@import '../../../styles/global.scss';

// story specific styling
.story__card-layout {
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
    margin: 30px;
    height: 800px;
    justify-content: space-around;
}

.story__card-content-layout {
    display: flex;
    padding: 24px;
    justify-content: left;
}

.story__margin-top {
    margin-top: 13px;
}

// example component to add to the Plus Plan Card
.plus-plan-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid $grey-light;
    padding-bottom: 5px;

    &--default {
        margin-bottom: 14px;
    }

    &--current,
    &--cancelled {
        background-color: $blue-pale;
        height: 131px;
        padding-bottom: 14px;

    }

    &--upcoming {
        background-color: $dark-blue;
        color: $white;
        height: 131px;
        padding-bottom: 14px;
    }


}



.plus-plan-heading__text {

    h2 {
        font-weight: 500;
        text-align: center;
        margin-bottom: 9px;
    }

    h3 {
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 6px;
    }
}

h2.plus-plan-heading__text--pro {
    font-weight: 700;
    font-size: 26px;
}

.plus-plan-heading__amount {
    font-size: 35px;
    font-weight: 700;
}

.plus-plan-heading__btn--cancel {
    color: $blue;
    background: $dark-blue;

    &:hover {
        color: $blue;
        background: $dark-blue;
    }
}

.plus-plan-heading__btn--undo {
    color: $blue;
    background: $blue-pale;

    &:hover {
        color: $blue;
        background: $blue-pale;
    }
}