.calculate-container .top-header {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -6px;
}
.tabs-container {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .calculate-container .top-header {
    }
    .calculate-container .mascot {
        height: 152px;
    }
    .calculate-container .top-header .stars {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        text-align: left;
        color: #9b9a97;
    }
    .calculate-container .top-header .stars div {
        display: flex;
        align-items: center;
        gap: 2px;
    }
    .calculate-container .top-header .stars img {
        width: 15px;
    }
}

/********************************
*********  TABS LIST  ***********
*********************************/
.tabs-container li {
    border-radius: 20px 2px 2px 2px;
    overflow: hidden;
    box-shadow: 0px 1.15px 2.31px 0px #00000026;
    margin-bottom: 16px;
}
.tabs-container li:last-child {
    /* margin-bottom: 0; */
}
.tabs-container li.active {
    border: 1px solid #b9b8b6;
}

/********************************
*********  TABS HEADER  *********
*********************************/
.tabs-container .header {
    color: #6d6c6a;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    height: 44px;
    background: linear-gradient(0deg, #f8f8f8 0%, #ffffff 100%);
    box-shadow: 0px 1.15px 2.31px 0px #00000026;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.tabs-container .header .header-title {
    display: flex;
    align-items: center;
}
.tabs-container .header .header-title .checkbox {
    margin-right: 8px;
}
.tabs-container .header .header-title .checkbox i {
    width: 23px;
    height: 23px;
    border: 2px solid #1d1d1d;
    border-radius: 50px;
    display: block;
}
.tabs-container .header .header-title .info {
    margin-left: 4px;
}
.tabs-container li.active .header .header-title {
    color: #1d1d1d;
}
.tabs-container .header .header-title .checkbox img {
    display: none;
}
.tabs-container li.success .header .header-title .checkbox i {
    display: none;
}
.tabs-container li.success .header .header-title .checkbox img {
    display: block;
}
.tabs-container .header span {
    font-weight: 500;
}

.tabs-container .header .arrow {
    position: relative;
}
.tabs-container .header .arrow img {
    transition: all 0.3s;
}
.tabs-container .active .arrow img {
    transform: rotate(180deg);
}
/* .tabs-container .header .arrow i {
    width: 12px;
    height: 12px;
    border-right: 2px solid #1d1d1d;
    border-bottom: 2px solid #1d1d1d;
    display: block;
    transform: rotate(45deg);
} */

/********************************
*********  TABS BODY  ***********
*********************************/
.tabs-container .tabs-body {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.tabs-container li.active .tabs-body {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}
.tabs-container .tabs-body > div {
    padding: 16px 24px;
}

/********************************
************  INPUT  ************
*********************************/
.tabs-container li .input .icon {
    display: none;
}
.tabs-container li.success .input .icon {
    display: block;
}

/********************************
************  RADIO  ************
*********************************/
.tabs-container .radio-list .box-container {
    position: relative;
    margin-bottom: 16px;
}
.tabs-container .radio-list .box-container:last-child {
    margin-bottom: 0;
}

.tabs-container .radio-list .box-container .hot {
    background-color: var(--c-yellow);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #1d1d1d;
    padding: 2px 8px;
    min-width: 130px;
    border-radius: 2px;
}
.tabs-container .radio-list .box-container input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    cursor: pointer;
    opacity: 0;
}
.tabs-container .radio-list .box {
    background: var(--c-whitish);
    padding: 8px;
    display: flex;
    gap: 16px;
    border-radius: var(--radius-sm);
    color: #1f1f1f;
    position: relative;
    border: 3px solid transparent;
    opacity: 0.8;
    min-height: 88px;
    align-items: center;
}

.tabs-container .radio-list img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-xs);
}
.tabs-container .radio-list .icon img {
    height: auto;
}
.tabs-container .radio-list .paragraph {
    max-width: 70%;
}
.tabs-container .radio-list .title {
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;
    margin-top: 4px;
}

.tabs-container .radio-list .text {
    font-family: var(--f-looped);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin-top: 4px;
}
.tabs-container .radio-list .icon-checked {
    position: absolute;
    width: 23px;
    height: 23px;
    top: 8px;
    right: 8px;
    display: none;
}
.tabs-container .radio-list .note {
    color: #fff;
    background: linear-gradient(0deg, var(--c-bkg), var(--c-bkg)),
        linear-gradient(273.08deg, rgba(14, 156, 81, 0.2) 0%, rgba(148, 213, 36, 0.2) 98.18%);
    display: flex;
    align-items: center;
    gap: 8px;
    height: 31px;
    border-radius: 2px 0px var(--radius-sm) 0px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
}
.tabs-container .radio-list .note div {
    font-size: 16px;
    font-weight: 700;
    line-height: 12px;
}
.tabs-container .radio-list .note span {
    font-size: 8px;
    font-weight: 400;
    line-height: 11.4px;
}

/********************************
*********  RADIO CHECKED  *******
*********************************/
.tabs-container .radio-list .box-container input[type="radio"]:checked + .box {
    border: 3px solid var(--c-bkg);
    opacity: 1;
}
.tabs-container .radio-list .box-container input[type="radio"]:checked + .box .note {
    border-radius: 2px 0px 2px 0px;
}
.tabs-container .radio-list .box-container input[type="radio"]:checked + .box .icon-checked {
    display: block;
}

/********************************
************  TOTAL   ***********
*********************************/
.calculate-total-container {
    color: #1f1f1f;
    padding: 1px 16px 16px;
    margin-bottom: 12px;
    display: none;
}
.calculate-total-container.active {
    display: block;
}
.calculate-total-container .total-body > div {
    display: flex;
    justify-content: space-between;
}

.calculate-total-container .total-header {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 18px;
    padding-bottom: 9px;
    border-bottom: 1px dashed #d9d9d9;
}
.calculate-total-container .total-body > div > div:last-child {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: right;
    white-space: nowrap;
}
.calculate-total-container .details {
    margin: 8px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.calculate-total-container .details span {
    font-family: var(--f-looped);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    display: block;
}
.calculate-total-container .details > div:last-child {
    font-size: 14px !important;
}
.calculate-total-container .caption {
    color: var(--c-gray);
    text-align: center;
    margin-top: 18px;
    font-family: var(--f-looped);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
.calculate-total-container .caption a {
    font-family: var(--f-noto);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    display: block;
    text-decoration: underline;
    margin-top: 2px;
}

.calculate-total-container .btn {
    margin-top: 18px;
}

/********************************
**********  Date List   *********
*********************************/
.radio-list-container {
    margin-top: 24px;
}
.tab-6 .calc-header-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
    color: #1d1d1d;
}
.tab-6 .calc-header-title img {
    margin-right: 8px;
}

.radio-list-container .list-container {
    margin-top: 16px;
}
.radio-list-container .list-container > div {
    position: relative;
    margin-bottom: 4px;
    display: flex;
    gap: 8px;
}
.radio-list-container .list-container input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.radio-list-container .list-container label {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.radio-list-container .list-container i {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--c-gray);
    border-radius: 50px;
    margin-top: 4px;
    position: relative;
}
.radio-list-container .list-container span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
}

.radio-list-container .list-container input[type="radio"]:checked + i:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--c-green);
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/********************************
***********  Textarea   *********
*********************************/
.calculate-textarea-container {
    margin-top: 24px;
}
.calculate-textarea-container textarea {
    border-radius: var(--radius-xs);
    border: 1px solid #b9b8b6;
    background: var(--c-whitish);
    width: 100%;
    height: 153px;
    margin: 16px 0;
    padding: 8px;
}
.calculate-textarea-container .btn {
    width: auto;
    margin: 0 auto 7px;
}

/********************************
*********  Date Slider   ********
*********************************/
.date-slider-container {
    margin: 8px 0 24px;
    position: relative;
}
.date-slider-container .arrow-left,
.date-slider-container .arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px 5px;
}
.date-slider-container .arrow-left {
    left: -20px;
}
.date-slider-container .arrow-right {
    right: -20px;
}
.date-slider-container .date-slider .box-container {
    padding: 0 6px;
}
.date-slider-container .date-slider .box {
    text-align: center;
    font-size: 16px;
    color: #1f1f1f;
    border: 1px solid #d7d7d5;
    background: var(--c-whitish);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-transform: capitalize;
    cursor: pointer;
    position: relative;
    /* width: 64px; */
}
.date-slider-container .date-slider .box:hover,
.date-slider-container .date-slider .box.active {
    border-color: transparent;
}
.date-slider-container .date-slider .box:hover:before,
.date-slider-container .date-slider .box.active:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-sm);
    display: block;
    border: 2px solid var(--c-green);
}
.date-slider-container .date-slider .box .day {
    font-family: var(--f-montserrat);
    font-size: 16px;
    font-weight: 300;
    line-height: 19.5px;
}
.date-slider-container .date-slider .box .number {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 2px;
}
.date-slider-container .date-slider .box .month {
    font-family: var(--f-montserrat);
    font-weight: 300;
    line-height: 19.5px;
    margin-top: 2px;
}

/********************************
*********  Date Button   ********
*********************************/
.custom-date .btn {
    width: auto;
    margin: auto;
    color: #1d1d1d !important;
}

/********************************
************  Note   ************
*********************************/
.note-container {
    margin: 16px 0;
    color: #1d1d1d;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        linear-gradient(0deg, #9bc3ff, #9bc3ff);
    border-radius: var(--radius-xs) 30px var(--radius-xs) 30px;
    padding: 18px 22px;
    display: none;
}
.note-container.active {
    display: block;
}
.note-container .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.note-container .title span {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.note-container p {
    font-family: var(--f-looped);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin: 6px 0;
}
.note-container p span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
