.t-input,
.t706__cartwin-totalamount-wrap,
.t706__cartwin-prodamount-wrap,
.t706__product-title,
.t706__product-quantity,
.t706__product-amount{
    font-family: 'Kazimir'!important;
    font-weight: 300!important;
}

.popup {
    display: flex;
    justify-content: row;
    color: #373d38;
    font-size: 18px;
    font-family: 'Kazimir', serif;
    background-color: #D7D1C5;
}

.popup * {
    outline: none;
    box-sizing: border-box;
}

.popup button {
    padding: 12px 24px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background-color: #85764f;
    width: 100%;
    cursor: pointer;
}

.popup label {
    margin-bottom: 8px;
    display: block;
}

.popup__col {
    padding: 24px;
    width: 50%;
}

.popup__row {
    width: 100%;
}

.popup__row-sets {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.popup__row-sets > div {
    width: 50%;
}

.popup__row:not(:last-child) {
    margin-bottom: 16px;
}

.popup ul {
    margin: 0;
    padding: 0 !important;
}

.popup .input {
    padding: 12px;
    width: 100%;
    display: block;
    font-size: inherit;
    border: 2px solid transparent;
    background: #fff;
    border-radius: 0;
}

.popup .input_error {
    border-color: #C92B1D !important;
}

.popup .input:focus {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.popup .calendar-container {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
}

.popup .calendar-container header {
    display: flex;
    align-items: center;
    padding: 24px 24px 12px;
    justify-content: space-between;
}

.popup header .calendar-navigation {
    display: flex;
}

.popup header .calendar-navigation span {
    height: 38px;
    width: 38px;
    margin: 0 1px;
    cursor: pointer;
    text-align: center;
    line-height: 38px;
    user-select: none;
    color: #aeabab;
    font-size: 1.9rem;
}

.popup .calendar-navigation span:last-child {
    margin-right: -10px;
}

.popup header .calendar-navigation span:hover {
    background: #f2f2f2;
}

.popup header .calendar-current-date {
    font-weight: 500;
    font-size: 1.45rem;
}

.popup .calendar-body {
    /* padding: 20px; */
}

.popup .calendar-body ul {
    list-style: none;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}

.popup .calendar-body .calendar-dates {
    margin-bottom: 20px;
}

.popup .calendar-body li {
    width: calc(100% / 7);
    font-size: 1.07rem;
    color: #414141;
}

.popup .calendar-body .calendar-weekdays li {
    cursor: default;
    font-weight: 500;
}

.popup .calendar-body .calendar-dates li {
    margin-top: 30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.popup .calendar-dates li.inactive {
    color: #aaa;
}

.popup .calendar-dates li.active {
    color: #fff;
}

.popup .calendar-dates li::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
}

.popup .calendar-dates li.today::before {
    background: #f2f2f2;
}


.popup .calendar-dates li.active::before {
    background: #676636;
}

.popup .calendar-dates li:not(.active):hover::before {
    background: #e4e1e1;
}


.popup select {
    border-radius: 0;
    border: none;
    background-color: #fff;
    font-size: inherit;
    font-family: inherit;
    padding: 12px;
    cursor: pointer;
    color: inherit;
}

.popup .hidden {
    display: none;
}

@media (max-width: 768px) { 
    .popup {
        flex-direction: column;
    }

    .popup__col {
        width: 100%;
    }
}
html, body {
  background-color: #D7D1C6 !important;
}