.widget-a2 {
    height: 100%;
    color: white;
    position: absolute;

    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
            transition:         transform 0.3s ease, opacity 0.3s ease;
}

/* .widget-a2 .widget-header .icon {
    position: absolute;
    left: 10px;
    top: -15px;
    width: 48px;
    height: 48px;

    -webkit-transition: -webkit-transform 0.3s ease;
            transition:         transform 0.3s ease;
} */

.widget-a2 .widget-header .caption {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;

    white-space: nowrap;

    -webkit-transition: -webkit-transform 0.3s ease;
            transition:         transform 0.3s ease;
}

.widget-a2.no-details .widget-header .caption {
    top: 10px;
}

.widget-a2 .widget-header .details {
    position: absolute;
    top: 33px;
    left: 10px;
    right: 0;

    white-space: nowrap;

    -webkit-transition: -webkit-transform 0.3s ease;
            transition:         transform 0.3s ease;

    font: 12px Sans-serif;

    overflow: hidden;
}

.widget-a2 .btn-close {
    position: absolute;
    width: 40px;
    height: 60px;
    top: 0;
    right: 0;

    cursor: pointer;

    background: transparent url("/images/close-04.png") no-repeat center center;
    z-index: 1;
}

.widget-a2 .btn-back {
    position: absolute;
    left: 0;
    top: 0px;
    width: 40px;
    height: 60px;

    background: transparent url("/images/back-01.png") no-repeat center center;
    cursor: pointer;

    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
            transition:         transform 0.3s ease, opacity 0.3s ease;

    opacity: 0;

    -webkit-transform: scale(0);
            transform: scale(0);
}

/* .widget-a2.with-back>.widget-header .icon, */
.widget-a2.with-back>.widget-header .caption, 
.widget-a2.with-back>.widget-header .details {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
}

.widget-a2.with-back>.widget-header .btn-back {
    opacity: 0.5;

    -webkit-transform: scale(1);
            transform: scale(1);
}

.widget-a2 .widget-body {

}

.widget-a2 .in-option {
    position: relative;
    cursor: pointer;
}

.widget-a2 .in-option:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 4px;
    left: 0;

    border: 1px solid #FFF;  
    border-radius: 50%; 
}

.widget-a2 .in-option:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e64a19;
    opacity: 0;
    -webkit-transition: opacity .2s;
            transition: opacity .2s;
}

.widget-a2 .in-option-active:after {
    opacity: 1;
}

.widget-a2 .in-option-disabled {
    opacity: 0.3;
}

.widget-a2 .in-option-name {
    margin-left: 25px;
    padding: 2px 0;
}

.widget-a2 input[type="checkbox"] {
    position: relative;
    height: 20px;
    width: 30px;
    margin-left: 10px;
    cursor: pointer;
}

.widget-a2 input[type="checkbox"]:before {
    content: '';
    position: absolute;
    top: 0px;
    left: -10px;
    width: 40px;
    height: 20px;
    border-radius: 10px;
    background: #CDD1DA;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.5);

    border: 3px solid white;
    box-sizing: border-box;

    z-index: 1;
}

.widget-a2 input[type="checkbox"]:after {
    content: '';
    position: absolute;
    top: 4px;
    left: -6px;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    -webkit-transition: -webkit-transform .2s;
            transition: transform .2s;

    z-index: 2;
}

.widget-a2 input[type="checkbox"]:checked:before {
    background: #9FD468;
}

.widget-a2 input[type="checkbox"]:checked:after {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
}

.widget-a2 .slider {
	position: absolute;
	top: 60px;
	bottom: 0;
	left: 0;
	width: 100%;

	overflow: hidden;
}

.widget-a2 .slide {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;

    -webkit-transition:-webkit-transform 0.3s ease;
            transition:        transform 0.3s ease;
}