.checkbox .checkbox-icon{
    width: 20px;
    height: 20px;
}

.checkbox input:before, 
.checkbox .checkbox-icon:before{
    border-radius: 3px;
    background: transparent;
    border-color: #dcdcdc;
    border-width: 1px;
}

.platform-android .checkbox-platform input:before, .platform-android .checkbox-platform .checkbox-icon:before, .checkbox-square input:before, .checkbox-square .checkbox-icon:before{
    margin-top: 4px;
}

.checkbox input:checked:before, 
.checkbox input:checked + .checkbox-icon:before{
    border-color: #1ab394;
    border-radius: 3px;
    background: transparent;
}

.checkbox input:checked:after, input:checked + .checkbox-icon:after{
    width: 12px;
    height: 6px;
    border-color: #1ab394;
    border-width: 3px;
    left: 5px;
    top: 6px;
}

.checkbox.checkbox-input-hidden.disable-pointer-events{
    padding: 0;
    margin: 0;
    left: 2px;
    right: 0;
    top: 0;
}

.item.item-checkbox{
    padding: 0 !important;
    padding-left: 25px !important;
    font-size: 14px !important;
    font-family: 'Roboto-Regular' !important;
    color: #808692 !important;
    font-weight: normal !important;
    border: 0 !important;
    margin-bottom: 5px !important;
}

.item.item-checkbox .item-content{
    line-height: 22px;
}

.platform-android .checkbox-platform input:after, 
.platform-android .checkbox-platform .checkbox-icon:after, 
.checkbox-square input:after, 
.checkbox-square .checkbox-icon:after{
    width: 9px !important;
    height: 4px !important;
    border-width: 2px !important;
    left: 6px !important;
    top: 4px !important;
}





/* basic css */
.checkbox-material{ 
    position:relative; 
    min-height: 20px;
}
.checkbox-material input[type=checkbox]{ 
    display:none; 
}
/*.checkbox-material label p:first-of-type{ 
    font-size: 16px
}*/
.checkbox-material label .desc{ 
    font-size: 14px;
    white-space: normal;
    padding-left: 22px;
    /*min-width: 150px;*/
    font-weight: normal;
    text-align: left;
    margin: 0;
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* checkbox css */
.checkbox-material label{ 
    cursor:pointer; 
    position: relative;
    min-width: 15px;
    min-height: 15px;
}
.checkbox-material label span{ 
    display:block; 
    position:absolute; 
    left:0; 
    -webkit-transition-duration:0.3s; 
    -moz-transition-duration:0.3s; 
    transition-duration:0.3s;
}
.checkbox-material label .circle{
    background:#FFF;
    left:-30px;
    top:-30px;
    height:80px;
    width:80px;
    z-index:-1;
    border-radius:50%; 
    -moz-border-radius:50%; 
    -webkit-border-radius:50%;
}
.checkbox-material label .box{
    border:2px solid #000;
/*    height:20px; 
    width:20px;*/
    height:15px; 
    width:15px;
    z-index:888;
    /*    -webkit-transition-delay:0.2s; 
        -moz-transition-delay:0.2s; 
        transition-delay:0.2s;*/
}
.checkbox-material label .check{
    top: -7px;
    left: 6px;
    width: 8px;
    height: 20px;
    border:2px solid #0f9d58;  
    border-top: none;
    border-left: none;
    opacity:0; 
    z-index:888;
    -webkit-transform:rotate(180deg); 
    -moz-transform:rotate(180deg);
    transform:rotate(180deg);
    /*    -webkit-transition-delay:0.3s;
        -moz-transition-delay:0.3s; 
        transition-delay:0.3s;*/
}

/* handling click events */

/* when checkbox is checked */
.checkbox-material label .circle {
    -webkit-animation   :growCircle 0.3s ease;
    -moz-animation      :growCircle 0.3s ease;
    animation           :growCircle 0.3s ease;
}
.checkbox-material input[type=checkbox]:checked ~ label .box,
.checkbox-material.checked label .box{ 
    opacity:0;
    -webkit-transform   :scale(0) rotate(-180deg);
    -moz-transform        :scale(0) rotate(-180deg);
    transform                 :scale(0) rotate(-180deg);
}
.checkbox-material input[type=checkbox]:checked ~ label .check,
.checkbox-material.checked label .check{
    opacity:1; 
    -webkit-transform   :scale(1) rotate(45deg);
    -moz-transform      :scale(1) rotate(45deg);
    transform           :scale(1) rotate(45deg);
}

/* bubble animation */

@-webkit-keyframes growCircle {
    0%, 100%   { -webkit-transform:scale(0); }
    70%        { background:#DDD; -webkit-transform:scale(1.25); }
}
@-moz-keyframes growCircle {
    0%, 100%   { -moz-transform:scale(0); }
    70%        { background:#DDD; -moz-transform:scale(1.25); }
}
@keyframes growCircle {
    0%, 100%   { transform:scale(0); }
    70%        { background:#DDD; transform:scale(1.25); }
}

.email-list .checkbox-material{
    height: inherit;
}

.email-list .checkbox-material label p{
    font-size: 18px;
    white-space: normal;
    line-height: 25px;
    margin-right: 10px;
    padding-left: 40px;
}

.email-list .checkbox-material.checked label .check {
    top: 0;
}

.checkbox-material.checked label .box {
    top: 5px;
}

