.customizingFrom {
    padding-top: 10px;
    padding-bottom: 20px;
}

.customizingFrom-input {
    display: block;
    width: 100%;
}

.customizingFromProdOption {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 3px;
    align-items: flex-start;
}

.customizingFrom-yourWish {
    display: block;
    width: 100%;
    min-height: 150px;
    grid-column: 1 / -1;
}

.customizingFromCountry {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 3px;
    align-items: flex-start;
}

.customizingFromDDate {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 3px;
    margin-bottom: 5px;
    align-items: flex-start;
}

.customizingFromDDate-item {
    display: flex;
}

.customizingFromDDate-item_rushed {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0 11px;

    .formError {
        grid-column: 2 / 3;
        margin-top: 9px;
    }
}

.customizingFrom-zip {
    width: 100%;
    max-width: 130px;
}

.customizingFrom-rushed {
    width: 100px;
    margin: -3px 0 -4px 0;
    text-transform: uppercase;
    padding: 0 5px;
    position: relative;
    text-align: center;
    font-weight: 300;

    &[disabled] {
        color: #bcbec0;
    }
}

.customizingFrom-rushed::-webkit-inner-spin-button,
.customizingFrom-rushed::-webkit-calendar-picker-indicator {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-appearance: none;
}

.customizingFromPhone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;

    .formError {
        grid-column: 1 / 3;
        margin-right: -20px;
    }
}

.customizingFromPhone-number {
    width: 130px;
}

.customizingFromPhone-extControl {
    display: flex;
    gap: 8px;
    align-items: center;
}

.customizingFromPhone-ext {
    width: 55px;
}

.customizingFrom-submit {
    margin-top: 10px;
}


.customizingFrom-options {
    display: flex;
    flex-direction: column;
}

.customizingFrom-optionsToggle {
    --main-color: #4fb2ec;
    font-size: 11px;
    line-height: 13px;
    color: var(--main-color);
    border: none;
    background-color: #fafafa;
    padding: 14px 20px 14px 19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -35px 0 0 auto;

    &.isActive {
        padding-bottom: 24px;

        .customizingFrom-optionsToggleIcon {
            &:before {
                translate: 0 5px;
                rotate: -45deg;
            }

            &:after {
                translate: 0 -5px;
                rotate: 45deg;
            }

            .customizingFrom-optionsToggleIcon-iconBar {
                scale: 0 1;
            }
        }
    }
}

.customizingFrom-optionsToggleIcon {
    display: block;
    width: 16px;
    height: 12px;
    position: relative;

    &:before,
    &:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        left: 0;
        position: absolute;
        background-color: var(--main-color);
        transition: all 0.15s ease 0.075s;
    }

    &:before {
        top: 0;

    }

    &:after {
        bottom: 0;
    }

    &:hover,
    &.isActive {

    }
}

.customizingFrom-optionsToggleIcon-iconBar {
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    background-color: var(--main-color);
    transition: all 0.3s ease;
}

.customizingFrom-optionsContent {}

.customizingFrom-popularOptions {
    display: block;
    font-style: italic;
    font-weight: bold;
    color: #444;
    text-decoration: underline;
    margin: 0 0 -5px auto;
}

.accordion {
    background-color: #fafafa;
    padding: 5px 20px;
}

.accordionItem {
    border-bottom: 1px solid #cccccc;

    &:last-child {
        border-bottom: none;
    }

    &.isActive {
        .accordionItemTitle {
            .accordionItemTitle-icon {
                &:before {
                    rotate: -180deg;
                }

                &:after {
                    rotate: -180deg;
                }
            }
        }

        .accordionItemContentWrapper {
            grid-template-rows: 1fr;

            .accordionItemContent {
                padding-top: 2px;
                padding-bottom: 25px;
            }
        }
    }
}

.accordionItemTitle {
    display: flex;
    align-items: center;
    padding: 11px 0 12px 0;
    cursor: pointer;
}

.accordionItemTitle-text {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #4fb2ec;
}

.accordionItemTitle-icon {
    display: block;
    width: 13px;
    height: 13px;
    margin-left: auto;
    cursor: pointer;
    position: relative;


    &:before,
    &:after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #4fb2ec;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transition: all 0.3s ease;
    }

    &:after {
        rotate: -90deg;
    }
}

.accordionItemContentWrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.15s linear;
    overflow: hidden;
}

.accordionItemContent {
    overflow: hidden;
    transition: padding 0.15s linear;

    h4 {
        font-weight: normal;
        line-height: 18px;
        margin: 0;
        text-transform: uppercase;
    }

    p {
        font-weight: 300;
        line-height: 18px;
        margin: 0 0 10px 0;

        &:last-child {
            margin: 0;
        }
    }
}

.accordionItemContent-section {
    margin: 0 0 10px 0;

    &:last-child {
        margin: 0;
    }
}

.accordionItemContent-title {
    font-weight: normal;
    line-height: 18px;
    margin: 0;
    text-transform: uppercase;
}

.accordionItemContent-para {
    font-weight: 300;
    line-height: 18px;
    margin: 0 0 10px 0;

    &:last-child {
        margin: 0;
    }
}

.accordionItemContent-link {
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
    color: #444444;

    &:hover {
        text-decoration: none;
    }
}

.customizingConfirmation {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.customizingConfirmation-text {
    text-align: center;
    margin-bottom: 25px;
}

.customizingConfirmation-para {
    line-height: 18px;
    margin: 0 0 12px 0;

    &:last-child {
        margin: 0;
    }
}

.customizingConfirmation-closeButton {
    font-size: 22px;
    line-height: 24px;
    padding: 7px 19px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .customizingFrom-rushed {
        width: 116px;
    }
}
