// -----------create tour modal style-------------
.wpvr-tour-list {
    .pro-tag {
        position: absolute;
        right: -15px;
        top: -10px;
        display: block;
        border-radius: 9px 9px 9px 0px;
        background: #00B4FF;
        font-size: 11px;
        color: #ffffff;
        font-weight: 600;
        padding: 5px 6px;
        text-transform: capitalize;
        z-index: 1;
        line-height: 0.8;
    }

    .wpvr-create-tour-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        background-color: #08072299;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;

        &.show {
            opacity: 1;
            visibility: visible;
        }

        * {
            box-sizing: border-box;
        }

        .wpvr-create-tour-inner {
            width: 100%;
            height: 100%;
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .wpvr-create-tour-modal-wrapper {
            background-color: #FFF;
            filter: drop-shadow(0px 10px 40px #18006433);
            border-radius: 10px;
            width: 100%;
            max-width: 782px;
            position: relative;
        }

        .wpvr-create-tour-modal-close {
            border-radius: 100px;
            background-color: #FFF;
            box-shadow: 0px 1px 1px 0px #C2BCD5;
            width: 40px;
            height: 40px;
            border: none;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            position: absolute;
            right: -18px;
            top: -18px;
            z-index: 1;
            cursor: pointer;
        }

        .wpvr-create-tour-modal-title {
            margin: 0;
            color: #0E003C;
            font-size: 22px;
            font-weight: 600;
            line-height: 1.2;
            border-bottom: 1px solid #F2EDFF;
            padding: 14px 30px;
        }


        // ------modal content style------
        .wpvr-create-tour-modal-content {
            padding: 25px 30px;

            .field-label {
                color: #0E003C;
                font-size: 16px;
                font-weight: 500;
                line-height: 1.3;
                display: block;
                margin-bottom: 9px;
            }

            input[type="text"] {
                border-radius: 5px;
                border: 1px solid #EAE4FF;
                width: 100%;
                color: #73707D;
                font-size: 16px;
                font-weight: 400;
                line-height: 1.3;
                padding: 14px 20px;
                box-shadow: none;
                outline: none;
            }

            .tour-type-group {
                margin-bottom: 25px;
            }

            .tour-type-wrapper {
                display: flex;
                flex-flow: row wrap;
                gap: 20px;
            }
        }

        .single-tour-type {
            input[type="radio"] {
                display: none;
            }

            .radio-box {
                position: relative;
                border-radius: 10px;
                border: 1px solid #EAE4FF;
                background: #FAF9FF;
                display: flex;
                align-items: center;
                gap: 6px;
                padding: 11px 14px;
                cursor: pointer;
                transition: all 0.3s ease;

                circle {
                    opacity: 0;
                    visibility: hidden;
                    transition: all 0.3s ease;
                }

                rect {
                    transition: all 0.3s ease;
                }
            }

            .radio-label {
                color: #0E003C;
                font-size: 15px;
                font-weight: 400;
                line-height: 1.3;
            }

            input[type="radio"]:checked + .radio-box {
                border-color: #3F04FE;
            }

            input[type="radio"]:checked + .radio-box .rect2 {
                stroke: #3F04FE;
            }

            input[type="radio"]:checked + .radio-box circle {
                opacity: 1;
                visibility: visible;
            }

            &.is-pro {
                .radio-box {
                    cursor: not-allowed;
                }

                .radio-label {
                    opacity: 0.5;
                }
            }
        }


        // ------modal footer style------
        .wpvr-create-tour-modal-footer {
            border-top: 1px solid #F2EDFF;
            padding: 20px 30px;

            .modal-action-buttons {
                display: flex;
                align-items: center;
                justify-content: flex-end;
                gap: 10px;
            }

            .wpvr-modal-btn {
                border-radius: 12px;
                border: 1px solid #EAE4FF;
                color: #0E003C;
                font-size: 16px;
                font-weight: 600;
                line-height: 1.3;
                background-color: transparent;
                padding: 14px 25px;
                cursor: pointer;
                transition: all 0.3s ease;

                &:hover {
                    background-color: #f8f8f8;
                }

                &.modal-submit {
                    background-color: #3F04FE;
                    color: #FFF;
                    border-color: #3F04FE;

                    &:hover {
                        background-color: #3604d7;
                        border-color: #3604d7;
                    }
                }
            }
        }
        
    }

}

@media screen and (max-width: 991px) {
    .wpvr-tour-list .wpvr-create-tour-modal .wpvr-create-tour-modal-content .tour-type-wrapper {
        gap: 10px;
    }

    .wpvr-tour-list .wpvr-create-tour-modal .single-tour-type .radio-box {
        border-radius: 6px;
        padding: 8px 11px;
    }

    .wpvr-tour-list .wpvr-create-tour-modal .single-tour-type .radio-label {
        font-size: 14px;
    }

    .wpvr-tour-list .wpvr-create-tour-modal .wpvr-create-tour-modal-footer .wpvr-modal-btn {
        border-radius: 8px;
        font-size: 14px;
        padding: 12px 20px;
    }

    .wpvr-tour-list .wpvr-create-tour-modal .wpvr-create-tour-modal-content input[type=text] {
        font-size: 15px;
        padding: 12px 17px;
    }

}