.multi-month-picker {
    width: 100%;
    font-size: 16px;
}

.multi-month-picker {
    display: inline-block;
}

.multi-month-picker .prev-button,
.multi-month-picker .next-button {
    color: transparent;
    font-size: 0;
}

.multi-month-picker .prev-button::after,
.multi-month-picker .next-button::after {
    content: '';
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    left: 50%;
    top: 50%;
    margin: -11px 0 0 -11px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.multi-month-picker .prev-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='15' viewBox='0 0 9 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.59619 1.90381L1.99999 7.50001L7.59619 13.0962' stroke='%23374550' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.multi-month-picker .next-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='15' viewBox='0 0 9 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.78857 13.0962L7.38477 7.49999L1.78858 1.9038' stroke='%23374550' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}

.multi-month-picker table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: none !important;
}

.multi-month-picker table tr th {
    padding-bottom: 30px;
    padding-top:15px;
}
.multi-month-picker table tr th,
.multi-month-picker table tr td {
    border: none !important;
    position: relative;
    height: 35px;
    text-align: center;
}

.multi-month-picker table tr td {
    cursor: pointer;
    padding: 3px;
}

.multi-month-picker table tr td a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    padding: 15px;
    text-transform: uppercase;
}

.multi-month-picker table tr td a:hover {
    background: var(--primary);
    color: var(--light) !important;
}

.multi-month-picker table tr td a:active {
    background: var(--primary);
}

.multi-month-picker table tr td a.active {
    background-color: var(--primary);
    color: var(--light) !important;
}


.multi-month-picker td a.prev-month, .multi-month-picker td a.prev-month:hover {
    opacity: 0.2 !important;
    background: var(--base) !important;
    border-color: var(--base) !important;
    color: var(--light) !important;
    font-weight: 700 !important;
}
