#ic-shipcalc, .ic-form-line {
    display: flex;
    justify-content: space-between;
    gap: 4rem
}

#ic-shipcalc > div {
    flex: 50%
}

@media (max-width: 1024px) {
    #ic-shipcalc {
        flex-direction: column;
    }
    
    #ic-shipcalc > div {
        flex: 100%
    }
}

.ic-form-line {
    align-items: flex-end;
    gap: 2rem
}

.ic-form-line > div {
    padding: 1.4rem 0;
    display: flex;
    flex-direction: column;
    flex: 100%;
}

.ic-form-line:last-child > div {
    display: block;
}

.ic-form-line.col-2 > div {
    flex: 50%
}

.ic-form-line.col-3 > div {
    flex: 33.33%
}

.ic-shipcalc-result {
    border: 1px solid rgba(217, 217, 217, 1);
    padding: 2.2rem 3.4rem;
    border-radius: 16px;
    display: flex;
    gap: 3rem;
}

.ic-shipcalc-result > div {
    flex: 50%
}

.ic-shipcalc-result h5 {
    margin-top: 0;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    padding-bottom: .5rem;
}

.ic-shipcalc-result h5 span {
    display: inline-block;
    vertical-align: middle;
}

.ic-shipcalc-result h5:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("../img/plane.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
    vertical-align: middle;
}

#boat-way h5:before {
    background-image: url("../img/boat.svg");
}

.ic-shipcalc-result > div > div:last-child {
    background-color: rgba(245, 245, 245, 1);
    border-radius: 12px;
    padding: 1.6rem;
    font-size: .85em;
}

.ic-shipcalc-result > div > div:last-child p {
    margin-bottom: 1rem;
}

.ic-shipcalc-result > div > div:last-child p:last-child {
    margin-bottom: 0;
}

.ic-shipcalc-result .net-payable {
    color: #980000;
    font-weight: 700;
    font-size: 1.6em;
    margin-bottom: 1.5rem;
}

.ic-shipcalc-result .delivery-time {
    font-weight: 600;
    font-size: 1.2em;
}

#pricing-link-container {
    display: flex;
    justify-content: center;
    padding: 4rem 0;
}

#pricing-link-container > div {
    background-color: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 10px 25px;
    margin: auto;
    text-align: center;
}

#pricing-link {
    font-weight: 600;
    color: #000;
}

#pricing-link::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    background-image: url("../img/arrow-right.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 5px;
}

@media (max-width: 500px) {
    .ic-form-line.col-2 > div, .ic-form-line.col-3 > div {
        flex: 100%
    }

    .ic-shipcalc-result, .ic-form-line {
        flex-direction: column;
        align-items: normal;
    }

    .ic-form-line.ic-form-dimensions {
        gap: 0;
    }

    .ic-shipcalc-result {
        padding: 2.2rem 2.4rem;
    }
    
    .ic-shipcalc-result > div {
        flex: 100%
    }
}