.rangePicker > .wrap .custom .from strong:before {
    content: 'OD'; }
.rangePicker > .wrap .custom .to strong:before {
    content: 'DO'; }
.rangePicker .calendar.from > select::after {
    content: 'Od - '; }
.rangePicker .calendar.to > select::after {
    content: 'Do - '; }

.box {
    box-shadow: 0 4px 5px rgba(75, 75, 75, 0.2);
    padding: 30px;
    border: 1px solid #ededed;
    margin-bottom: 25px;
}

.box .icons {
    color: #1a3586;
}

.box h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-center {
    align-items: center;
}

.mb-0 {
    margin-bottom: 0;
}

.pb-20 {
    padding-bottom: 20px;
}

@media (min-width: 768px) {
    .rangePicker.show.custom > .wrap > .custom {
        display: flex;
    }

    .rangePicker footer {
        max-height: none;
        display: block;
        padding-bottom: 0;
        align-self: flex-end;
    }

    .rangePicker > .wrap .custom > .calendar {
        width: 230px;
    }

    .rangePicker footer button {
        width: 100%;
    }

    .rangePicker footer button:first-child {
        margin-bottom: 10px;
    }
}

.checkbox label:after,
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox label {
    padding-left: 0;
    font-size: 15px;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}
