body {
    background-color: var(--color-wrapper) !important;
}

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
    margin-top: 30px;
}

.container h1,
.container h2,
.container h3,
.container h4 {
    line-height: 25% !important;
    color: var(--color-dark);

}

.ep__header * {
    text-align: center;
}

.ep__button {
    border: var(--border-default);
    background: var(--color-f3f3f3);
    box-shadow: var(--box-shadow);
    outline: none;
    padding: 10px;
    width: 100%;
    text-align: center;
    margin: auto;
    font-size: 16px;
}

.getStarted__plans {
    display: flex;
    gap: 30px;
    margin: 30px 0px;
}

.getStarted__plans>div>div:nth-child(1) {
    border-bottom: 1px solid var(--border-color);
}

.getStarted__plans>div>div:nth-child(1) p {
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.getStarted__free__button {
    cursor: pointer;
}

.getStarted__free {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-light);
    border: var(--border-default);
    box-shadow: var(--box-shadow);
    padding: 5px 15px;
    padding-bottom: 15px;
    height: fit-content;
}

.basic__features {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.basic__features p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/*
|======================================================*
|           get started premium
|======================================================*
*/
.getStarted__premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
    padding: 5px 15px;
    padding-bottom: 15px;
    border: var(--border-default);
    box-shadow: var(--box-shadow);
    background: var(--color-light);
    position: relative;
}

.plans__wrapper {
    display: flex;
    gap: 20px;
}

.plans__wrapper>div:nth-child(2) {
    margin-top: -20px;
}

.plans__wrapper>div {
    flex: 1;
    max-width: 50%;
}

.plans__wrapper div p {
    font-size: 16px;
}

.features__list {
    height: 100%;
}

.basic__features ul,
.features__list ul {
    z-index: 10;
}

.basic__features ul li a,
.features__list ul li a, li {
    color: var(--color-dark);
    text-decoration: none;
}

.features__list>div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features__list>div:nth-child(1) p {
    display: flex;
    gap: 10px;
    align-items: center;
}

.terms__policy {
    position: absolute;
    bottom: 10px;
    left: 20px;
    max-width: 40%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms__policy img {
    margin-top: 10px;
}

.terms__policy p {
    line-height: 130%;
}

.plans__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plans__list label {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border-color);
    padding: 10px;
    justify-content: space-between;
    cursor: pointer;
}

.plans__list label div>p:nth-child(1) {
    font-size: 22px;
    font-weight: 600;
}

.plans__list label.active {
    background-color: #172c4c;
}

.plans__list label.active div>p:nth-child(1) {
    color: #ffd02c;
}

.plans__list label.active div>p:nth-child(2) {
    color: var(--color-light);
}

.plans__list label.active input[type="radio"]:checked {
    border-color: #ffd02c !important;
    /* background: radial-gradient(farthest-side, #FFD02C 94%, #0000) 50%/0 0 no-repeat content-box; */
}

.plans__list label>div:nth-child(1) {
    display: flex;
    gap: 10px;
    align-items: center;
}

.plans__list label>div:nth-child(2)>p:nth-child(1) {
    text-align: right;
}

.plans__list label div>p:nth-child(2) {
    font-size: 14px;
}

.plans__list label>div:nth-child(2)>p:nth-child(2) {
    color: #8c8c8c !important;
    font-size: 12px;
}

.plans__list label.active>div:nth-child(2)>p:nth-child(2) {
    color: var(--color-light);
}

.getStarted__button {
    background: #ffd02c !important;
    margin-top: 10px;
}

.getStarted__premium {
    position: relative;

    .discount-label {
        position: absolute;
        top: -4px;
        right: 4px;
    }
}

/*
|======================================================*
|       checkbox and radio button
|======================================================*
*/

input[type="radio"] {
    --s: 1em;
    /* control the size */
    --c: var(--color-dark);
    /* the active color */
    height: var(--s);
    aspect-ratio: 1;
    border: calc(var(--s) / 8) solid #939393;
    padding: calc(var(--s) / 8);
    background: radial-gradient(farthest-side, #ffd02c 94%, #0000) 50%/0 0 no-repeat content-box;
    border-radius: 50%;
    outline-offset: calc(var(--s) / 10);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: inherit;
    transition: 0.3s;
}

input[type="radio"]:checked {
    background: radial-gradient(farthest-side, #ffd02c 94%, #0000) 50%/0 0 no-repeat content-box;
    background-size: 100% 100%;
}

input[type="radio"]:checked+span {
    color: var(--color-dark) !important;
}

input[type="radio"]:disabled {
    background: linear-gradient(#939393 0 0) 50%/100% 20% no-repeat content-box;
    opacity: 0.5;
    cursor: not-allowed;
}

@media print {
    input[type="radio"] {
        -webkit-appearance: auto;
        -moz-appearance: auto;
        appearance: auto;
        background: none;
    }
}


@media only screen and (max-width: 550px) {
    .getStarted__plans {
        flex-direction: column;
    }

    .plans__wrapper {
        flex-direction: column;
    }

    .plans__wrapper>* {
        max-width: 100% !important;
    }
}