/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 9, 2019, 1:40:31 PM
    Author     : krishna
*/

.krishna-date-switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;

}

.krishna-date-switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.krishna-date-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    padding: 1px 0px;
    font-size: 70%;
    text-align: center;
}

.krishna-date-slider:before {
    position: absolute;
    content: " ";
    height: 15px;
    width: 15px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: 0.4s;
}


input:focus + .krishna-date-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .krishna-date-slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}

/* Rounded sliders */
.krishna-date-slider.round {
    border-radius: 34px;
}

.krishna-date-slider.round:before {
    border-radius: 50%;
}

.krishna-addon-group{
    position: relative;
    display: table;
    border-collapse: separate;
    line-height: 1.153846;
}
.krishna-addon-group .krishna-addon{
    padding: 5px 2px 0px 2px;
    text-align: center;
    background-color: #e5e6e6;
    border: 1px solid rgba(12, 12, 12, 0.12);
    border-radius: 2px;
    display: table-cell;
}