        tags-input input {
            max-width: 100%
        }

        #cityTypeahead {
            border-color: rgba(0, 240, 255, 0.15)
        }

        .win7-spinner {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

            .win7-spinner .dot {
                position: absolute;
                top: 50%;
                width: 12px;
                height: 12px;
                margin-top: -6px;
                background-color: var(--color-primary);
                border-radius: 50%;
                opacity: 0;
                animation: moveDot 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            }

                .win7-spinner .dot:nth-child(1) {
                    animation-delay: 0s;
                }

                .win7-spinner .dot:nth-child(2) {
                    animation-delay: 0.3s;
                }

                .win7-spinner .dot:nth-child(3) {
                    animation-delay: 0.6s;
                }

                .win7-spinner .dot:nth-child(4) {
                    animation-delay: 0.9s;
                }

                .win7-spinner .dot:nth-child(5) {
                    animation-delay: 1.2s;
                }

                .win7-spinner .dot:nth-child(6) {
                    animation-delay: 1.5s;
                }

                .win7-spinner .dot:nth-child(7) {
                    animation-delay: 1.8s;
                }

                .win7-spinner .dot:nth-child(8) {
                    animation-delay: 2.1s;
                }

                .win7-spinner .dot:nth-child(9) {
                    animation-delay: 2.4s;
                }

                .win7-spinner .dot:nth-child(10) {
                    animation-delay: 2.7s;
                }

        @keyframes moveDot {
            0% {
                left: -10%;
                opacity: 0;
                transform: scale(0.5);
            }

            10% {
                opacity: 1;
                transform: scale(1);
            }

            90% {
                opacity: 1;
                transform: scale(1);
            }

            100% {
                left: 110%;
                opacity: 0;
                transform: scale(0.5);
            }
        }

        .tag-item {
            color: #fff !important
        }

        .form-control {
            border-radius: 8px;
            border: 1px solid #E4E4E7;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
            color: #000;
            font-size: var(--font-size-base-md);
            line-height: var(--line-height-base);
            padding: 12px 34px;
            height: auto;
        }

            .form-control::placeholder {
                letter-spacing: 0.175em;
                opacity: 0.5;
                text-transform: uppercase;
            }

        .form-radio {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 0;
        }

        .radio-switch input {
            display: none;
        }

        .radio-switch label {
            position: relative;
            font-size: var(--font-size-base);
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 171.429%;
            padding-left: 51px;
            margin-bottom: 0;
            cursor: pointer;
        }

            .radio-switch label::before {
                content: '';
                background-color: #E0E5F2;
                border-radius: 30px;
                width: 36px;
                height: 18px;
                position: absolute;
                left: 0;
                top: 3px;
                transition: 0.2s ease-in-out all;
            }

        .radio-switch input:checked + label::before {
            background-color: #4260F1;
        }

        .radio-switch label::after {
            content: '';
            background-color: #fff;
            border-radius: 100%;
            width: 14px;
            height: 14px;
            position: absolute;
            left: 2px;
            top: 5px;
            transition: 0.2s ease-in-out all;
        }

        .radio-switch input:checked + label::after {
            left: 20px;
        }

        textarea.form-control {
            height: 218px;
        }

        .form-group.mb-0 {
            margin-top: 28px;
        }

        form .terms {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: var(--font-size-base-md);
            color: #000;
        }

            form .terms label {
                margin-bottom: 0;
                font-weight: 400 !important;
            }

                form .terms label a {
                    color: #000;
                    text-decoration: underline;
                }

        .bg-danger-l {
            background-color: var(--color-primary) !important;
        }

            .bg-danger-l:hover {
                background-color: var(--color-primary) !important;
                box-shadow: inset 3px 2px 3px #000
            }
