/*
    agenda.opticastecnovision.cl
    main.css
*/
.schedule-block {
    background-color: white;
    padding: 25px 5px;
    -webkit-border-radius: .25rem;
       -moz-border-radius: .25rem;
            border-radius: .25rem;
}

.schedule-block.closed {
    position: relative;
}

.schedule-block.closed {
    position: relative;
    filter: blur(5px);
}

.schedule-block.closed::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    z-index: 999;
}

/* schedule-form */
.schedule-form {
    font-size: 16px;
}

.schedule-form .control-label {
    font-weight: 700;
    font-size: 0.9em;
}

.schedule-form .help-block {
    color: #a7a9a8;
}

.schedule-form a {
    text-decoration: none;
}

.schedule-form .btn-submit {
    font-weight: 700;
    background-color: #F9C742;
    color: white;
    border-radius: 0px 20px 20px 20px;
    padding: 010px 40px 10px 40px;

}

/* checkbox-service */
.checkbox-service:checked,
.checkbox-service:not(:checked) {
    position: absolute;
    left: -9999px;
    width: 0;
    height: 0;
    visibility: hidden;
}

.checkbox-service:checked + label,
.checkbox-service:not(:checked) + label{
    position: relative;
    display: inline-block;
    padding: 20px 10px;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    background-color: white;
    -webkit-transition: all .3s ease-out;
       -moz-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;
}

.checkbox-service:not(:checked) + label{
    color: #4b4b4b;
    background-color: white;
    border-left: 10px solid #F9C742;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.checkbox-service:checked + label {
    color: white;
    background-color: #F9C742;
    border-left: 10px solid #F9C742;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-service:not(:checked) + label:hover{
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.checkbox-service:checked + label::before,
.checkbox-service:not(:checked) + label::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    z-index: -1;
}

.checkbox-service:checked + label span,
.checkbox-service:not(:checked) + label span{
	position: relative;
	display: block;
}

.checkbox-service:checked + label span::before,
.checkbox-service:not(:checked) + label span::before{
    position: absolute;
    content: attr(data-hover);
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
-webkit-text-stroke: transparent;
    text-stroke: transparent;
    -webkit-text-fill-color: var(--white);
    text-fill-color: var(--white);
    color: var(--white);
    -webkit-transition: max-height 0.3s;
    -moz-transition: max-height 0.3s;
    transition: max-height 0.3s;
}

.checkbox-service:not(:checked) + label span::before{
	max-height: 0;
}

.checkbox-service:checked + label span::before{
	max-height: 100%;
}

.checkbox-service:disabled + label {
    background-color: #cccccc;
    border-left: 10px solid gray;
    cursor: not-allowed;
}

/* datepicker-inline */
.datepicker-inline {
    border: solid 2px #c1c1c1;
    width: 100% !important;
}

.datepicker-inline table {
    width: 100%;
}

.datepicker-inline table tr td.active:hover, .datepicker-inline table tr td.active:hover:hover, .datepicker-inline table tr td.active.disabled:hover, .datepicker-inline table tr td.active.disabled:hover:hover, .datepicker-inline table tr td.active:active, .datepicker-inline table tr td.active:hover:active, .datepicker-inline table tr td.active.disabled:active, .datepicker-inline table tr td.active.disabled:hover:active, .datepicker-inline table tr td.active.active, .datepicker-inline table tr td.active:hover.active, .datepicker-inline table tr td.active.disabled.active, .datepicker-inline table tr td.active.disabled:hover.active, .datepicker-inline table tr td.active.disabled, .datepicker-inline table tr td.active:hover.disabled, .datepicker-inline table tr td.active.disabled.disabled, .datepicker-inline table tr td.active.disabled:hover.disabled, .datepicker-inline table tr td.active[disabled], .datepicker-inline table tr td.active:hover[disabled], .datepicker-inline table tr td.active.disabled[disabled], .datepicker-inline table tr td.active.disabled:hover[disabled] {
    background-color: #F9C742 !important;
    background-image: none;
    -webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
}

.datepicker-inline table tr td.day {
    padding: 3px 5px;
}