﻿:root {
    --background-primary: #b41e82;
    --background-secondary: #ff8200;
    --background-light: #fff;
    --text-primary: #444444;
    --text-secondary: #b41e82;
    --text-light: #fff;
}

.dropdown-toggle::after {
    display: none;
}

input:focus-visible,
button:focus-visible {
    outline: none;
    box-shadow: none;
}

.radio-buttons {
    display: flex;
    gap: 32px;
    color: #fff;
}

.radio-button {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    cursor: pointer;
}

    .radio-button input[type="radio"] {
        display: none;
    }

.radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    margin-right: 16px;
}

    .radio-circle::before {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: all 0.2s ease-in-out;
    }

.radio-button input[type="radio"]:checked + .radio-circle::before {
    transform: translate(-50%, -50%) scale(1);
}

.radio-button:nth-of-type(1) input[type="radio"]:checked + .radio-circle::before,
.radio-button:nth-of-type(2) input[type="radio"]:checked + .radio-circle::before {
    background-color: var(--background-secondary);
}

.radio-button:nth-of-type(1) input[type="radio"]:checked + .radio-circle,
.radio-button:nth-of-type(2) input[type="radio"]:checked + .radio-circle {
    border-color: var(--background-secondary);
}

.radio-label {
    font-size: 14px;
}

.sitename {
    font-weight: 700;
    font-size: 1.125em;
    font-family: 'Open Sans', sans-serif;
    font-stretch: condensed;
}

.btn-sign {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    border-radius: 16px;
    background-color: transparent;
    height: 42px;
    padding: 10px 14px;
    font-size: 14px;
    transition: background-color 0.3s ease-in-out;
}

    .btn-sign:hover {
        background-color: #f5f5f5;
    }

.trip-panel {
    background-color: rgba(136, 136, 136, 0.7);
    border-radius: 24px;
    width: 100%;
    padding: 21px 34px;
    color: #fff;
    margin-bottom: 42px;
}

    .trip-panel .head-label {
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
        font-weight: 700;
        line-height: normal;
        margin-bottom: 4px;
    }

    .trip-panel .input-group {
        flex-wrap: unset;
        border-radius: 6px;
        border: 0.8px solid #aaa;
    }

        .trip-panel .input-group-text {
            border: 0;
        } 

        .trip-panel input {
            width: 100%;
            height: 42px;
            border-top-right-radius: 6px !important;
            border-bottom-right-radius: 6px !important;
            background-color: #fff;
            border: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 3px 10px;
        }

    .trip-panel .input-grid {
        display: grid;
        align-items: center;
    }

    .trip-panel .transfer-circle {
        width: 32px;
        height: 29px;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        margin-top: 24px;
        margin-left: -8px;
        margin-right: -8px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        justify-content: center;
        cursor: pointer;
    }

        .trip-panel .transfer-circle > i {
            color: var(--background-secondary);
        }

        .trip-panel .btn-search {
            position: relative;
            border: 0;
            background-color: var(--background-secondary);
            height: 42px;
            border-radius: 32px;
            color: #fff;
            width: 135px;
            margin-top: 25px;
            transition: background-color 0.3s ease-in-out;
        }

.btn-search.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-search.loading {
    font-size: 0;
    color: transparent;
}

.trip-panel .btn-search:disabled {
    opacity: 0.6;
    pointer-events: none;
}

            .trip-panel .btn-search:hover {
                background-color: #e17f1e
            }

.trip-panel .border-danger {
    border: 2px solid red !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

            @media (max-width: 992px) {
                .trip-panel {
                padding-left: 16px;
                padding-right: 16px;
            }

            .trip-panel .btn-search {
                width: 100%;
                margin-top: 0;
            }

                .trip-panel .transfer-circle {
                    margin: 0px auto -20px;
                    transform: rotate(90deg);
                    width: 33px;
                    height: 33px;
                }
        }