.bzc-threeStepDatepicker *  {
    box-sizing: border-box;
}

.threeStepDatePicker-layer {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: fixed;
    background-color: rgba(53, 49, 49, 0.5);
    width: 100%;
    height: 100%;
    display: block;
    z-index: 111;
}
.threeStepDatePicker-popin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    z-index: 99998;
    position: fixed;
    top: 0;
    left: 0;
}
.bzc-threeStepDatepicker {
    overflow: auto;
    background: #fff;
    height: 48rem;
    max-width: 38rem;
    position: relative;
}
.close-button {
    position: absolute;
    z-index: 99999;
    right: 0;
    background: none;
    border: 0;
    padding: 1rem;
    height: 4.2rem;
    width: 4.2rem;
}
.container-title {
    text-align: left;
    color: #333333;
    background-color: #eee;
}
.container-title, .container-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
}
.elem-container-header {
    position: relative;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.container-title {
    padding: 1rem 1.6rem;
}
.container-subtitle {
    padding: 1.5rem 1.6rem;
}
.arrow-nav-left-container, .arrow-nav-right-container {
    position: absolute;
    z-index: 99999;
}
.arrow-nav-left-container {
    left: 0;
}
.arrow-nav-right-container {
    right: 0;
}
.arrow-nav-left-container button, .arrow-nav-right-container button {
    background: none;
    border: 0;
    padding: 0 1rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
}
.container-main {
    margin: 0.8rem;
}
.year-container-main{
    height: 36rem;
    overflow:auto;
}
.container-list {
    display: flex;
    flex-wrap: wrap;
}
.year-item, .month-item, .day-item {
    display: block;
    padding: 1.5rem 0.5rem;
    text-align: center;
    font-size: 1.6rem;
    color: #000;
}
@media screen and (min-width: 768px) {
    .year-item, .month-item, .day-item {
        padding: 1.5rem;
    }
}
.year-container-list .item {
    width: 20%;
}
.month-container-list .item {
    width: 50%;
}
.days-items .item {
    width: 20%;
}
.item.selected span {
    background-color: #09c;
    color: #fff;
    cursor: pointer;
    text-shadow: none;
}
.month-item:hover, .year-item:hover, .day-item:hover {
    color: #fff;
    background-color: #09c;
    cursor: pointer;
}
.error-msg-datepicker {
    display: none;
}