/* Minification failed. Returning unminified contents.
(32,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(33,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(34,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(35,28): run-time error CSS1039: Token not allowed after unary operator: '-bgColor'
(36,18): run-time error CSS1039: Token not allowed after unary operator: '-border'
(38,22): run-time error CSS1039: Token not allowed after unary operator: '-boxShadow'
(44,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(46,26): run-time error CSS1039: Token not allowed after unary operator: '-direction'
(51,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(54,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(55,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(58,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(59,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(62,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(65,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(66,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(69,28): run-time error CSS1039: Token not allowed after unary operator: '-entpIcon'
(74,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(77,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(85,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(86,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(98,17): run-time error CSS1039: Token not allowed after unary operator: '-titleColor'
(107,17): run-time error CSS1039: Token not allowed after unary operator: '-descColor'
(111,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(112,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(123,28): run-time error CSS1039: Token not allowed after unary operator: '-labelBg'
(124,17): run-time error CSS1039: Token not allowed after unary operator: '-labelColor'
(128,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(129,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(131,17): run-time error CSS1039: Token not allowed after unary operator: '-color'
(136,18): run-time error CSS1039: Token not allowed after unary operator: '-priceMargin'
(141,17): run-time error CSS1039: Token not allowed after unary operator: '-baseColor'
(145,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(146,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(147,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(153,17): run-time error CSS1039: Token not allowed after unary operator: '-color'
(161,28): run-time error CSS1039: Token not allowed after unary operator: '-icon'
(165,18): run-time error CSS1039: Token not allowed after unary operator: '-height'
(171,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(172,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(173,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(177,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(178,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(179,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(180,28): run-time error CSS1039: Token not allowed after unary operator: '-blue'
(181,17): run-time error CSS1039: Token not allowed after unary operator: '-big'
(182,18): run-time error CSS1039: Token not allowed after unary operator: '-big'
(183,25): run-time error CSS1039: Token not allowed after unary operator: '-radius'
(187,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(194,28): run-time error CSS1039: Token not allowed after unary operator: '-pink'
(195,17): run-time error CSS1039: Token not allowed after unary operator: '-small'
(196,18): run-time error CSS1039: Token not allowed after unary operator: '-small'
(197,25): run-time error CSS1039: Token not allowed after unary operator: '-radius'
(210,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(215,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(220,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */


* {
    box-sizing: border-box;
}

.plans {
    width: 96%;
    max-width: 1128px;
    margin: 0 auto;
}
.plans__container {
    padding: 1rem 0 2rem;
}

.plansHero {
    text-align: center;
    padding: 5rem 0 4.5rem;
    line-height: 1.21;
}
.plansHero__title {
    font-weight: 700;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: #000;
}
.plansHero__subtitle {
    margin: 0;
}

.planItem {
    --border: 1px solid #e6e6e6;
    --bgColor: #fff;
    --boxShadow: none;
    background-color: var(--bgColor);
    border: var(--border);
    border-radius: 1rem;
    box-shadow: var(--boxShadow);
    padding: 2rem 1.5rem;
    display: inline-flex;
    flex-direction: column;
}
.planItem__container {
    --direction: column;
    display: grid;
    grid-auto-flow: var(--direction);
    grid-auto-columns: 1fr;
    gap: 1.5rem;
}
.planItem .price {
    --priceMargin: 2rem 0;
}
.planItem--free {
    --border: 0;
    --boxShadow: 0px 14px 30px rgba(204, 204, 204, 0.32);
}
.planItem--pro .label {
    --labelBg: #fdb72e;
    --labelColor: #fff;
}
.planItem--entp {
    --bgColor: var(--blue);
}
.planItem--entp .card {
    --titleColor: #fff;
    --descColor: rgb(255 255 255 / 80%);
}
.planItem--entp .card__icon {
    background-image: var(--entpIcon);
    background-size: cover;
}
.planItem--entp .price,
.planItem--entp .featureList {
    --color: #fff;
}
.planItem--entp .featureList {
    --icon: var(--whiteTick);
}
.planItem .button {
    margin-top: auto;
}


.card {
    --titleColor: #000;
    --descColor: var(--baseColor);
}
.card__header {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.card__icon {
    width: 2.625rem;
    height: 2.625rem;
}
.card h2 {
    color: var(--titleColor);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
}
.card__desc {
    margin: 1.5rem 0 0;
    color: var(--descColor);
}

.label {
    --labelColor: var(--baseColor);
    --labelBg: #e5e5e5;
    font-weight: 600;
    line-height: 1.25;
    font-size: 1rem;
    text-align: center;
    padding: 0.625rem 1.125rem;
    border-radius: 2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--labelBg);
    color: var(--labelColor);
}

.price {
    --color: #000;
    --priceMargin: 0;
    display: flex;
    color: var(--color);
    align-items: center;
    gap: 0.5625rem;
    font-weight: 600;
    font-size: 2rem;
    margin: var(--priceMargin);
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--baseColor);
}

.featureList {
    --color: #000;
    --icon: var(--redTick);
    --height: 0.875rem;
    margin: 0 0 2.75rem;
    padding: 0;
    font-weight: 500;
}
.featureList li {
    color: var(--color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.featureList li:before {
    content: "";
    background-image: var(--icon);
    background-size: cover;
    display: block;
    width: 1.125rem;
    height: var(--height);
}
.featureList li:last-child {
    margin-bottom: 0;
}
.featureList li.disabled {
    --color: #b1b8c9;
    --height: 1.125rem;
    --icon: var(--close);
}

.symbol {
    --big: 2.625rem;
    --small: 1.5rem;
    --radius: 0.25rem;
    border: 2px solid var(--blue);
    width: var(--big);
    height: var(--big);
    border-radius: var(--radius);
    position: relative;
}
.symbol--rounded {
    --radius: 2rem;
}
.symbol:after {
    content: "";
    box-sizing: border-box;
    display: block;
    position: absolute;
    border: 2px solid var(--pink);
    width: var(--small);
    height: var(--small);
    border-radius: var(--radius);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
    .plans {
        max-width: 480px;
        width: 90%;
    }

    .planItem__container {
        --direction: row;
    }
}
@media screen and (min-width: 641px) and (max-width: 768px) {
    :root {
        --baseSize: 12px;
    }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
    :root {
        --baseSize: 14px;
    }
}
