.pricing_heading {
    font-size: 100px;
    text-align: center;
    margin: 120px auto 50px;
    width: 850px;
}

.pricing_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing_wrapper h3 {
    margin: -5px 0 -10px;
    font-size: 36px;
}

.separator {
    height: 2px;
    background-color: var(--white);
    width: 100%;
    margin: 20px 0;
    z-index: 100;
    opacity: 0.2;
}

.pricing_wrapper .day_hire {
    position: sticky;
    top: 160px;
    width: calc(100% - 500px - 64px);
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid var(--white);
    background-color: var(--trans-white);
    border-radius: 10px;
    color: var(--white);
}

.pricing_wrapper .day_hire .prices h3 {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.pricing_wrapper .day_hire .prices h3:last-of-type {
    margin-bottom: -5px;
}

.pricing_wrapper .day_hire .prices h3 span {
    color: var(--beaver);
}

.extras_column {
    width: 500px;
    padding: 20px;
    box-sizing: border-box;
    border: 2px solid var(--white);
    border-radius: 10px;
}

.extras_column .optional_extras {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
}

.extras_column .optional_extra {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
}

.extras_column .optional_extra:first-of-type {
    margin-top: 0;
}

.page_separator {
    width: 100%;
    height: 2px;
    background-color: var(--trans-white);
    margin: 150px auto;
}

.extra_price {
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px !important;
}

.extra_price i {
    margin-right: 8px;
}

@media (max-width: 1200px) {
    .pricing_wrapper .day_hire,
    .extras_column {
        width: calc((100% - 40px) / 2);
    }
}

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

    .pricing_wrapper .day_hire {
        position: relative;
        top: unset;
        margin-bottom: 40px;
        width: 100%;
    }

    .extras_column {
        width: 100%;
    }

    .extras_column .optional_extras {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .extras_column .optional_extra {
        width: calc((100% - 40px) / 2);
        margin-right: 40px !important;
        margin-top: 40px;
    }

    .extras_column .optional_extra:nth-of-type(2n) {
        margin-right: 0 !important;
    }

    .extras_column .optional_extra:nth-of-type(1),
    .extras_column .optional_extra:nth-of-type(2) {
        margin-top: 10px !important;
    }

    .extra_content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media (max-width: 960px) {
    .pricing_heading {
        font-size: 60px;
        width: 100%;
    }
}

@media (max-width: 750px) {
    .extras_column .optional_extra {
        width: 100%;
        margin-right: 0 !important;
        margin-top: 40px;
    }

    .extras_column .optional_extra:nth-of-type(2n) {
        margin-right: 0 !important;
    }

    .extras_column .optional_extra:nth-of-type(2) {
        margin-top: 40px !important;
    }
}

@media (max-width: 600px) {
    .pricing_heading {
        font-size: 48px;
        width: 100%;
        margin: 100px auto 30px;
    }

    .page_separator {
        margin: 100px auto;
    }
}

@media (max-width: 500px) {
    .extras_column {
        margin-top: 40px;
        padding: 0;
        border: none;
        border-radius: 0;
    }

    .extras_column h3,
    .extras_column .extras_note {
        text-align: center;
    }

    .pricing_wrapper .day_hire .prices h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    .pricing_wrapper .day_hire h3,
    .pricing_wrapper .day_hire p {
        text-align: center;
    }
    
    .pricing_wrapper .day_hire .prices h3 {
        flex-direction: column;
        text-align: center;
    }
}