@import "style.css";

:root{
    --user-blue: #012fa6;
}

.title-underline{
    /*background-color: var(--bs-black);*/
    width: calc( 100% - 1rem);
    height:0.25rem;
}

.plan-title{
    cursor: pointer;
}

.plan-title.active{
    color:var(--bs-primary);

}
.plan-title.active .title-underline{
    background-color:var(--bs-primary);
}

.period-selection{
    border: 2px solid var(--banner);
    cursor: pointer;
}

.period-selection.active{
    border-color:var(--orange);
    background-color:var(--orange-10);
}

.bg-bannerButton:hover{
    background-color: var(--bannerButton)!important;
    opacity: 0.8!important;
}

.payment-card {
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    width: 10rem;
    text-align: center;
}
.payment-card .logo{
    width: 1.5rem;
    height: 1.5rem;
}

.checkmark {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    color: white;
    display: flex;
    align-items: end;
    justify-content: end;
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
    background: linear-gradient(to bottom right,
    transparent 49%,
    var(--bs-success) 50%
    );
    padding-right: 0.2rem;
}
.card {
    transition: all 0.3s ease;
}
.card.active {
    border: 1px solid var(--bs-success);
}

#activateCodeModalBody{
    white-space: pre-line;
}