﻿.circle__checkbox {
    display: none;
}

.circle__check {
    display: inline-block;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    background: white;
    vertical-align: middle;
    width: 3em;
    height: 3em;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: border .3s ease;
    transition: border .3s ease;
    
}

    .circle__check i.icon {
        opacity: 0.2;
        font-size: 20px;
        color: transparent;
        -webkit-transition: opacity .3s .1s ease;
        transition: opacity .3s .1s ease;
        -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
    }

    .circle__check:hover {
        border: 5px solid rgba(0, 0, 0, 0.2);
    }

.circle__checkbox:checked + .circle__text .circle__check {
    -webkit-animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1 forwards;
    animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 1 forwards;
}

    .circle__checkbox:checked + .circle__text .circle__check .icon {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
        color: white;
        -webkit-text-stroke: 0;
        -webkit-animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
        animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
    }

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@-webkit-keyframes icon {
    from {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes icon {
    from {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes check {
    0% {
        width: 2.5em;
        height: 2.5em;
        border-width: 5px;
    }

    10% {
        width: 2.5em;
        height: 2.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 2.5em;
        height: 2.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 3em;
        height: 3em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 3em;
        height: 3em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

@keyframes check {
    0% {
        width: 2.5em;
        height: 2.5em;
        border-width: 5px;
    }

    10% {
        width: 2.5em;
        height: 2.5em;
        opacity: 0.1;
        background: rgba(0, 0, 0, 0.2);
        border-width: 15px;
    }

    12% {
        width: 2.5em;
        height: 2.5em;
        opacity: 0.4;
        background: rgba(0, 0, 0, 0.1);
        border-width: 0;
    }

    50% {
        width: 3em;
        height: 3em;
        background: #00d478;
        border: 0;
        opacity: 0.6;
    }

    100% {
        width: 3em;
        height: 3em;
        background: #00d478;
        border: 0;
        opacity: 1;
    }
}

.setcolumn-lables {
    color: #333;
    font-size: 12px;
    font-family: irsans;
    position: relative;
    float: right;
    margin-right: 5px;
    margin-left: 15px;
    margin-top: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .circle__check {
        display: inline-block;
        border-radius: 50%;
        border: 5px solid rgba(0, 0, 0, 0.1);
        background: white;
        vertical-align: middle;
        width: 2em;
        height: 2em;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: border .3s ease;
        transition: border .3s ease;
    }
    @-webkit-keyframes check {
        0% {
            width: 1.5em;
            height: 1.5em;
            border-width: 5px;
        }

        10% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.1;
            background: rgba(0, 0, 0, 0.2);
            border-width: 15px;
        }

        12% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.4;
            background: rgba(0, 0, 0, 0.1);
            border-width: 0;
        }

        50% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 0.6;
        }

        100% {
            width: 3em;
            height: 3em;
            background: #00d478;
            border: 0;
            opacity: 1;
        }
    }

    @keyframes check {
        0% {
            width: 1.5em;
            height: 1.5em;
            border-width: 5px;
        }

        10% {
            width: 2.5em;
            height: 2.5em;
            opacity: 0.1;
            background: rgba(0, 0, 0, 0.2);
            border-width: 15px;
        }

        12% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.4;
            background: rgba(0, 0, 0, 0.1);
            border-width: 0;
        }

        50% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 0.6;
        }

        100% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 1;
        }
    }

    .setcolumn-lables {
        color: #333;
        font-size: 12px;
        font-family: irsans;
        position: relative;
        float: right;
        margin-right: 5px;
        margin-left: 15px;
        margin-top: 10px;
    }
}
 
 
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .circle__check {
        display: inline-block;
        border-radius: 50%;
        border: 5px solid rgba(0, 0, 0, 0.1);
        background: white;
        vertical-align: middle;
        width: 2em;
        height: 2em;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: border .3s ease;
        transition: border .3s ease;
    }
    @-webkit-keyframes check {
        0% {
            width: 1.5em;
            height: 1.5em;
            border-width: 5px;
        }

        10% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.1;
            background: rgba(0, 0, 0, 0.2);
            border-width: 15px;
        }

        12% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.4;
            background: rgba(0, 0, 0, 0.1);
            border-width: 0;
        }

        50% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 0.6;
        }

        100% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 1;
        }
    }

    @keyframes check {
        0% {
            width: 1.5em;
            height: 1.5em;
            border-width: 5px;
        }

        10% {
            width: 2.5em;
            height: 2.5em;
            opacity: 0.1;
            background: rgba(0, 0, 0, 0.2);
            border-width: 15px;
        }

        12% {
            width: 1.5em;
            height: 1.5em;
            opacity: 0.4;
            background: rgba(0, 0, 0, 0.1);
            border-width: 0;
        }

        50% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 0.6;
        }

        100% {
            width: 2em;
            height: 2em;
            background: #00d478;
            border: 0;
            opacity: 1;
        }
    }
    .setcolumn-lables {
        color: #333;
        font-size: 12px;
        font-family: irsans;
        position: relative;
        float: right;
        margin-right: 5px;
        margin-left: 15px;
        margin-top: 10px;
    }
 
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
   
}