* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    padding: 0px;
    margin: 0px;
    background-color: #fff;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

h1,
h2,
h3 {
    text-align: center;
    text-transform: uppercase;
}

section {
    max-width: 1100px;
    margin: 0px auto;
    padding: 24px;
}

.to {
    max-width: 800px;
    margin: 40px auto;
}

.to__price {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(233, 233, 233);
}

.to__price div:first-child {
    text-transform: uppercase;
    font-weight: 600;
}

.to__info {
    padding: 40px 30px;
    background-color: rgb(233, 233, 233);
}

.calculator__top {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    z-index: 10;
}

.carousel {
    height: 90px;
}

.splide__arrow--prev {
    margin-left: -40px !important;
}

.splide__arrow--next {
    margin-right: -40px !important;
}

.choices[data-type*=select-one]::after {
    top: 25px !important;
}

.splide__slide {
    padding: 10px 30px;
    color: #000;
    border: 2px solid #333;
    text-align: center;
    cursor: pointer;
    margin-right: 2rem !important;
}

.to__price {
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
}

.to__info-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.to__info-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.to__info-item {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid gray;
    text-align: right;

}

.to__info-item-not-bt {
    border-top: none !important;
}

.to__info-item span:first-child {
    text-align: left;
    margin-right: 60px;
}

.to__info-item ul,
.to__info-description ul {
    margin: 0px;
    list-style-type: none;
    padding: 0px;
}

.to__info-description ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.to__info-description li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.to__info__image {
    width: 50%;
}

.to__info__image img {
    height: auto;
    width: 100%;
}

.to__info-footer {
    margin-top: 20px;
}

.to__info-footer .to__info-item {
    border-top-width: 2px;
}

.to__info-item--footer {
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width:787px) {
    .calculator__top {
        display: block;
    }

    .to__price,
    .to__info {
        padding: 30px 20px;
    }
}