/* ----------------
 * DASHBOARD BUY
 * ---------------*/

#dashboard-buy {
    background-color: #FFF;
    display: inline-block;
    border-radius: 4px;
    margin-top: 38px;
    min-height: 300px;
    width: 75%;
}
.dashboard-tabs{
    display: flex;
    flex-flow: row wrap;
    text-align: center;
}
.dashboard-tab-head{
    font-size: 24px;
    padding: 5px;
    width: 100%;
    color: rgba(43, 57, 71, 0.8);
    font-weight: 300;
    flex: 0 0 100%;
    cursor: pointer;
    background:#fcfcfc;
    border-bottom: 1px solid #edf1f4;
    outline: 0;
}
.dashboard-tab-head:hover{
    color: #2B3947;
}
.dashboard-tab-head.active{
    color: #01b2ce;
    border-bottom: 2px solid;
    background: #FCFCFC;
}
.dashboard-tab-body{
    padding: 0 20px;
}

.price-list {
    padding: 30px 0 0;
    margin: 0;
}

.price-list li {
    width: 140px;
    font-size: 24px;
    line-height: 25px;
    margin: 10px;
    padding: 15px 0 10px;
    display: inline-block;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all .2s ease-in-out 0s;
    position: relative;
}
.price-list li:hover,
.price-list li:focus{
    border-color: #b1e0ec;
    box-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.price-list li .quantity{
    font-size: 25px;
    color: #333;
    padding-bottom: 0;
    font-weight: 300;
}
.price-list li .quantity .lite{
    font-size: 14px;
    color: #999;
    line-height: 16px;
    margin-top: 0px;
}

.price-list li .pack-price{
    color: #00b2cc;
    font-size: 18px;
    padding-bottom: 0;
    margin-top: 5px;
}
.price-list li .pack-price .integer-price{
    font-size: 22px;
    font-weight: 600;
}
.price-list li .pack-price .float-price{
    line-height: 0px;
    font-size: 12px;
    margin-top: -2px;
    position: relative;
    top: -7px;
    right: -2px;
}
.price-list li .unit-price{
    color: #727272;
    font-size: 14px;
    font-style: italic;
    padding-top: 0;
    margin-top: -3px;
}

.price-list li .redirect-loader{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-list li .redirect-loader ui-loader-ring{
    width: 50px;
    height: 50px;
}

@media(min-width: 992px){
    .dashboard-tabs{
        flex-flow: row nowrap;
    }
    .dashboard-tab-head{
        font-size: 20px;
        padding: 10px;
        flex: 1;
    }
    .price-list li{
        width: 200px;
    }
}


.dashboard-buy-footer{
    padding: 30px 0 35px;
    color: #838383;
}
.dashboard-currency-selector{
    position: relative;
    display: inline-block;
    min-width: 200px;
}

/**************
** MODAL 
***************/

.modal.buy-credits .modal-content{
  border: 0;
}
.modal.buy-credits .title{
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: white;
  padding: 10px;
  background: #2C3A47;
}
.modal.buy-credits .title .close-icon{
    position: absolute;
    top: 5px;
    right: 25px;
    font-size: 25px;
    cursor: pointer;
    color: #AAAAAA;
}
.modal.buy-credits .title .close-icon:hover{
  color: white;
}

.modal.buy-credits .content{
  padding: 0;
}
.modal.buy-credits #dashboard-buy{
  margin: 0px;
  width: 100%;
  height: 100%;
}
