/* Note Tables */
figure > table{
  width: 100% !important;
  border: 1px black solid;
}
figure > table td{
  padding: 1rem !important;
  border: 1px black solid;
}
/* SWITCHER */
.switch {
    --circle-dim: 1.4em;
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5aeae;
    transition: .4s;
    border-radius: 30px;
}

.slider-card {
    position: absolute;
    content: "";
    height: var(--circle-dim);
    width: var(--circle-dim);
    border-radius: 20px;
    left: 0.3em;
    bottom: 0.3em;
    transition: .4s;
    pointer-events: none;
}

.slider-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    perspective: 1000px;
    border-radius: 50%;
    transition: .4s transform;
}

.slider-card-front {
    background-color: #DC3535;
}

.slider-card-back {
    background-color: #379237;
    transform: rotateY(180deg);
}

input:checked~.slider-card .slider-card-back {
    transform: rotateY(0);
}

input:checked~.slider-card .slider-card-front {
    transform: rotateY(-180deg);
}

input:checked~.slider-card {
    transform: translateX(1.5em);
}

input:checked~.slider {
    background-color: #9ed99c;
}
.sidebar-report{
    width: 96%;
    flex: 0 0 auto;
}
.button-report{
    width: 3%;
    flex: 0 0 auto;
}
/* Button Call */
.btn-calls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    /* background-color: #099885; */
  }
.btn-sms {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #8f0056;
  }
.btn-vm {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    /* background-color: #c6933c; */
}

  /* plus sign */
.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}
  /* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    transition-duration: .3s;
}
  /* hover effect on button width */
.btn-calls:hover, .btn-sms:hover, .btn-vm:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.btn-calls:hover .sign, .btn-sms:hover .sign, .btn-vm:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}
  /* hover effect button's text */
.btn-calls:hover .text{
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}
.btn-sms:hover .text{
    opacity: 1;
    width: 55%;
    transition-duration: .3s;
    padding-right: 10px;
}

/* button click effect*/
.btn-calls:active, .btn-sms:active, .btn-vm:active {
    transform: translate(2px ,2px);
}
.btn-sms:active{
    background: #8f0056 !important;
}
/* Punch in  Punch Out*/
.toggle-button-cover {
    display: table-cell;
    position: relative;
    width: 150px;
    height: 60px;
    box-sizing: border-box
}

.button-cover {
    display: table-cell;
    position: relative;
    width: 150px;
    height: 60px;
    box-sizing: border-box
}

.button-cover:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover, .knobs, .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    top: 50%;
    width: 150px;
    height: 45px;
    margin: -20px auto 0 auto;
    overflow: hidden;
}

.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: transparent;
    transition: 0.3s ease all;
    z-index: 1;
}

.button.r, .button.r .layer {
    border-radius: 100px;
}

#button-3 .knobs:before {
    content: "ClockEase Punch-In";
    position: absolute;
    top: 8px;
    left: 4px;
    width: 90px;
    height: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 7px 4px;
    background-color: #02a310;
    border-radius: 11%;
    transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

#button-3 .checkbox:active + .knobs:before {
    width: 46px;
    border-radius: 100px;
}

#button-3 .checkbox:checked:active + .knobs:before {
    margin-left: -26px;
}

#button-3 .checkbox:checked + .knobs:before {
    content: "ClockEase Punch-Out";
    left: 45px;
    background-color: #f44336;
}


#button-3 .checkbox:checked ~ .layer {
    background-color: transparent;
}
.call-container-min{
    display: none;
}

.modal-body{
    word-wrap: break-word;
}
.shepherd-title{
    flex: auto !important;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    #button-3 .checkbox:not(:checked) + .knobs:before {
        content: "Punch In";
    }

    #button-3 .checkbox:checked + .knobs:before {
        content: "Punch Out";
    }
    #button-3 .knobs:before {
        content: "ClockEase Punch-In";
        position: absolute;
        top: 8px;
        left: 4px;
        width: 70px;
    }
    #button-3 {
        margin: -24px 0 0 0px;
    }

    .btn-cmplt{
        width: 100%;
        margin: 10px 0;
    }
    .w-auto{
        width: 100% !important;
    }
    .sidebar-report{
        width: 93%;
    }

    /* BUTTONS */
    .btn-calls-cmplt {
        width: 100%;
    }
    .ribbon-box{
        width: 100%;
    }
    .call-container{
        display: none;
    }
    .call-container-min{
        display: flex;
    }
    .clockease{
        width: 115px;
    }
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .pagination .page-item {
        margin: 0;
    }

    .pagination .page-link {
        min-width: 40px;
        text-align: center;
    }
}
