
.pricesCont {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 1.5em 0em;
}

.pricesCont > div {
    flex: 0 0 calc(100%/3 - 2em);
    min-width: 180px;
    border: 0.1em solid #e0e0e0;
    text-align: center;
}

.pricesCont > div > p:first-of-type {
    margin-bottom: 1em;
    padding: 0.3em 0em;
    color: #fff;
    background: #818286;
}

.creditsImageCont {
    position: relative;
}

.creditsImageCont img {
    margin: 0em auto;
}

.creditsImageCont > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: bold;
    color: #8e8e8e;
}

.proceedBtn {
    background: #ffd800 none repeat scroll 0 0;
    border: none;
    color: #323338;
    padding: 3px 15px;
    margin-bottom: 1em;
}
  
