.check
{
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.check span a
{
    color: #20252b;
}

.check span
{
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.check.small span:first-child
{
    border-radius: 100%;
}

.check.small span:last-child label
{
    font-size: 12px;
    color: #ca322e;
    margin-bottom: 0;
}

.check.small span:first-child svg
{
    top: 2px;
    left: 2px;
}

.check.middle span:first-child
{
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.check.middle span:first-child svg
{
    left: 3px;
    top: 3px;
}

.check.middle span.title slash
{
    font-size: 14px;
    font-weight: 400;
}

.check.middle span.title
{
    font-size: 20px;
    margin-left: 10px;
    font-weight: 500;
}


.check.big span:first-child
{
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.check.big span:first-child svg
{
    left: 3px;
    top: 4px;
}

.check.big span.title
{
    font-size: 24px;
    margin-left: 10px;
    font-weight: 500;
}

.check.big label
{
    border-radius: 40px;
    background-color: #ca322e;
    padding: 3px 17px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
}

.check span:first-child
{
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #8c8c8c;
    transition: all 0.2s ease;
}

.disabled .check span:first-child svg
{
    stroke: #8c8c8c;
}

.check span:first-child svg
{
    position: absolute;
    top: 4px;
    left: 2px;
    fill: none;
    stroke: #c21b17;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.check span:first-child:before
{
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.check span:last-child
{
    padding-left: 10px;
    margin-top: 3px;
    font-weight: 300;
    float: left;
    width: 95%;
}
.check:hover span:first-child {
    border-color: #ca322e;
}

.inp-cbx:checked + .check span:first-child
{
    border-color: #b0b2b3;
    background-color: #ffffff;
    animation: wave 0.4s ease;
}

.inp-cbx:checked + .check span:first-child svg {
    stroke-dashoffset: 0;
}
.inp-cbx:checked + .check span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

@media (max-width: 767px)
{
    .check.big span.title
    {
        font-size: 17px;
        margin-left: 0;
    }

    .check.big label
    {
        padding: 3px 13px;
        font-size: 12px;
        margin-left: 4px;
    }

    .check.big span:first-child
    {
        width: 20px;
        height: 20px;
    }

    .check span:last-child
    {
        margin-top: 0;
        font-size: 15px;
    }

    .check span:first-child
    {
        width: 14px;
        height: 14px;
    }

    .check.small span:first-child svg
    {
        top: 1px;
        left: 1px;
    }

    .middle
    {
        display: initial;
    }

    .check.big span:first-child svg
    {
        left: 2px;
        top: 2px;
        width: 14px;
        height: 15px;
    }

    .check.middle span.title
    {
        font-size: 12px;
        margin-left: 0px;
    }

    .check.middle span:first-child
    {
        width: 16px;
        height: 16px;
    }

    .check.middle span.title slash
    {
        font-size: 10px;
        font-weight: 400;
    }

    .check.middle span:first-child svg
    {
        left: 2px;
        top: 2px;
        height: 10px;
        width: 10px;
    }

    .check span:first-child svg
    {
        top: 1px;
        left: 1px;
    }
}
