
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .checkbox-wrapper-13 input[type=checkbox] {
        --active: #a9c22b;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    .checkbox-wrapper-13 input[type=checkbox]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    .checkbox-wrapper-13 input[type=checkbox]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    .checkbox-wrapper-13 input[type=checkbox]:disabled+label {
        cursor: not-allowed;
    }

    .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    .checkbox-wrapper-13 input[type=checkbox]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        width: 21px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        opacity: var(--o, 0);
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --o: 1;
    }

    .checkbox-wrapper-13 input[type=checkbox]+label {
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
        margin-left: 4px;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
        border-radius: 50%;
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
        background-color: #a9c22b;

    }
}

.checkbox-wrapper-13 * {
    box-sizing: inherit;
}

.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
    box-sizing: inherit;
}



.tariff-selection {
    display: flex;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
}


.tariff-selection .tariff-info {
    display: flex;
    width: 90%;
    justify-content: space-between;
    padding: 10px 25px;
}

.tariff-selection .tariff-info span {
    background-color: #a9c22b;
    border-radius: 5px;
    padding: 10px;
    font-weight: 700;
    color: #fafafafa;
}


.tariff {
    border: 1px solid #ccc;
}



.tariff .tariff-title {
    background-color: #a9c22b;
    left: 0px;
    top: 0px;
    max-width: 360px;
    padding: 48px 35px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}


.tariff .arrow-right {
    width: 0;
    border-top: 90px solid transparent;
    border-bottom: 90px solid transparent;
    border-left: 80px solid #a9c22b;
}




.tariff .tariff-title h6 {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.tariff .tariff-title a {
    line-height: 1.4em;
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
}

.tariff .tariff-content {
    position: relative;
    min-height: 225px;
    padding: 46px 0px 46px 0px;
    border-right: 1px solid #f1f1f1;
}


.tariff .tariff-price-box {
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding-top: 45px;
}


.tariff .tariff-price-box {
    position: relative;
    font-weight: 700;
    line-height: 1.1em;
    font-size: 30px;
    color: black;
    margin-bottom: 20px;
}

.tariff .tariff-price-box span {
    position: relative;
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.tariffbtn {
    line-height: 30px;
    font-weight: 500;
    border-radius: 3px!important;
    font-size: 16px!important;
    text-transform: capitalize;
    color: #fafafafa!important;
    background-color: #a9c22b!important;
}



.stepper {
    .line {
      width: 2px;
      background-color: lightgrey !important;
    }
    .lead {
      font-size: 1.1rem;
    }

    .rounded-circle {
        background-color: #a9c22b!important;
        border: 1px solid #ced4da;
    }
  }
  