body
{
    background: #fafbff;
    overflow-x: hidden;
}

.container
{
    padding: 40px 20px;
}

nav.bg-primary
{
    justify-content: space-between;
}

nav.bg-primary a
{
    color: white;
}

.actions-sidebar
{
    padding: 30px 0;
}

.actions-sidebar ul
{
    list-style: none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
}

.actions-sidebar li
{
    text-align: right;
}

.plans .list
{
    display: flex;
    flex-wrap: wrap;
    justify-content: initial;
    padding-top: 30px;
    margin: 0 -10px;
}

.plans .plan
{
    position: relative;
    z-index: 10;
    width: calc(33.3333% - 20px);
    margin: 0 10px 30px;
    background: white;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
}

.plan .image > .rate
{
    opacity: 0;
    transform: translateX(50%);
    margin-left: -83px;
    transition: all 0.5s;
}

.plan .image .edit .ratings a
{
    margin: 0 2px;
    font-size: 18px;
}

.plan .edit .ratings
{
    position: relative;
    margin-top: 4px;
}

.plan .edit .ratings .over
{
    position: absolute;
    top: 0;
    overflow: hidden;
}

.plan .edit .ratings .over .wrap
{
    width: 104px;
}

.plan .rate .open a
{
    display: inline-block;
    transform: translateY(-44px);
    padding: 8px 20px 10px;
    background: #78c2ad;
    border-radius: 2px;
    color: white;
}

.plan .rate .over
{
    display: none;
}

.plan .ok
{
    display: none;
}

.plan.done .ok
{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(120, 194, 173, 0.8);
    text-align: center;
    transition: all 0.3s;
    z-index: 12;
}

.plan.done:hover .ok,
.plan.done.rateopen .ok
{
    opacity: 0;
    pointer-events: none;
}

.plan.done:hover .image > .rate
{
    opacity: 1;
}

.plan.done .rateover
{
    display: none;
}

.plan.done .rateover .stars
{
    text-align: center;
    padding-top: 100px;
    padding-bottom: 20px;
}

.plan.done .rateover .buttons
{
    text-align: center;
}

.plan.done .rateover .buttons button
{
    padding: 8px 20px 10px;
    border: none;
    background: #78c2ad;
    color: white;
    border-radius: 2px;
}

.plan.done.rateopen .rateover
{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10;
}

.plan.done.rateopen .rateover a
{
    color: white;
}

.plan.done.rateopen .edit,
.plan.done.rateopen > .rate,
.plan.done.rateopen > .image > .rate
{
    visibility: hidden;
}

.plan.done .ok i
{
    position: absolute;
    top: 50%;
    margin-top: -50px;
    font-size: 100px;
    color: white;
    left: 50%;
    margin-left: -40px;
}

.plan .image
{
    height: 210px;
    background-size: cover;
    background-position: center;
}

.plan .image .edit
{
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    text-align: right;
    opacity: 0;
    transition: all 0.2s;
    z-index: 15;
    display: flex;
    justify-content: space-between;
}

.plan .image .edit .rate a
{
    margin-left: 0;
    padding: 0 3px;
    font-size: 18px;
    line-height: 34px;
}

.plan .image .edit .rate i.fa-star,
.plan .image .edit .rate a.over i.fa-star-o,
.plan .image .rateover i.fa-star,
.plan .image .rateover a.over i.fa-star-o
{
    display: none;
}

.plan .image .edit .rate a.over i.fa-star,
.plan .image .rateover a.over i.fa-star
{
    display: inline-block;
}

.plan:hover .edit
{
    opacity: 1;
}

.plan .image .edit a
{
    color: white;
    font-size: 24px;
    display: inline-block;
    margin-left: 10px;
}

.plan .description
{
    padding: 15px;
}

.plan .description h4
{
    font-size: 18px;
}

.plan .done .label
{
    text-align: center;
    padding-bottom: 10px;
}

.plans.form h3
{
    padding-bottom: 25px;
}

.input
{
    padding-bottom: 25px;
}

.input.required label:after
{
    content: '*';
    display: inline-block;
    padding-left: 4px;
    color: #d00;
}

.buttons
{
    text-align: right;
}

.buttons button
{
    cursor: pointer;
    margin-left: 3px;
}

.dragdealer
{
    position: relative;
    height: 30px;
    background: #EEE;
    border-radius: 3px;
    margin-bottom: 25px;
}

.dragdealer .handle
{
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.dragdealer .red-bar
{
    width: 80px;
    height: 30px;
    background: #78C2AD;
    color: #FFF;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    border-radius: 3px;
}

.dragdealer .disabled
{
    background: #898989;
}

.input.number.required
{
    display: none;
}

@media(max-width: 991px)
{
    .plans .plan
    {
        width: calc(50% - 20px);
    }
}

@media(max-width: 550px)
{
    .plans .plan
    {
        width: calc(100% - 20px);
    }
}