.checkbox.style-d {
    width: 100%;
    display: inline-block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: flex-end;
    height: 20px;
}
.checkbox.style-d input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark {
    background-color: #76d46f;
}
.checkbox.style-d input:checked ~ .checkbox__checkmark:after {
    opacity: 1;
}
.checkbox.style-d:hover input ~ .checkbox__checkmark {
    background-color: #c7d7c2;
}
.checkbox.style-d:hover input:checked ~ .checkbox__checkmark {
    background-color: #76d46f;
}
.checkbox.style-d .checkbox__checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #d7e2dc;
    transition: background-color 0.25s ease;
    border-radius: 11px;
}
.checkbox.style-d .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.calc-radio-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}
input[type=radio].calc-radio {
    display: none;
}
input[type=radio].calc-radio + label {
    border: 1px solid #76d46f;
    padding: 5px 10px;
    width: 100%;
    max-width: 100px;
    text-align: center;
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    user-select: none;
    background-color: #cfffd3;
    color: #000000;
    line-height: 20px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;

}


input[type=radio].calc-radio + label:hover {
    background-color: #bbffa8;
    color: #000000;
}
input[type=radio].calc-radio:checked + label {
    background-color: #76d46f;
    border: 1px solid #30b526;
    color: #ffffff;
}


.calc-term {
    width: 100%;
    text-align: center;
    /* font-style: italic; */
    font-size: 15px;
}



.calc-tooltip-box {
    display: inline-block !important;;
    margin: 0px !important;
}


.calc-tooltip {
    border: 1px solid #d3d3d3;
    display: flex;
    width: 16px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    font-size: 14px;
    background-color: #ffffff;
    cursor: pointer;
    color: #ababab;
    font-weight: 500;
}

.ui-tooltip, .arrow:after {
    background: #ffffff;
    border: 1px solid #a7a2a2;
}

.ui-tooltip {
    padding: 10px 20px;
    color: #000000;
    border-radius: 14px;
    font-family: "Montserrat", sans-serif !important;
    box-shadow: 0 0 7px black;
    font-style: italic;
    font-size: 13px !important;
}

.arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
}

.arrow.top {
    top: -16px;
    bottom: auto;
}

.arrow.left {
    left: 20%;
}

.arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    tranform: rotate(45deg);
}

.arrow.top:after {
    bottom: -20px;
    top: auto;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 12px;
}
.ui-datepicker .ui-datepicker-title {
    display: flex;
    justify-content: space-around;
}