﻿#slidePanel {
    --primary: #6366F1;
    --primary-light: #EEF2FF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gray: #9CA3AF;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    #slidePanel *,
    #slidePanel *::after,
    #slidePanel *::before {
        box-sizing: border-box;
    }

    #slidePanel html {
        font-size: 62.5%;
    }

    #slidePanel body {
        font-size: 1.6rem;
        font-family: "Droid Sans", sans-serif;
        color: #dbe2e9;
        background: #424f5c;
    }

    #slidePanel a {
        color: #89ba2c;
        text-decoration: none;
    }

    #slidePanel label {
        color: #1e1e6e;
    }

    #slidePanel .form-wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 10px;
        max-width: 1200px;
        margin: auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    #slidePanel h2 {
        text-align: left;
        color: #1e1e6e;
        margin-top: 0;
        padding-bottom: 0.75rem;
        font-weight: 600;
        font-size: 2rem;
    }

    #slidePanel .pl-0 {
        padding-left: 0 !important;
    }

    #slidePanel .blue-heading {
        color: #1e1e6e;
    }

    #slidePanel select,
    #slidePanel input[type="text"],
    #slidePanel input[type="number"],
    #slidePanel textarea {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        color: #000;
    }

    #slidePanel .section {
        margin-bottom: 30px;
    }

    #slidePanel .checkbox-group label {
        margin-right: 20px;
    }

    #slidePanel .inline-select {
        display: flex;
        gap: 10px;
/*        margin-bottom: 16px;*/
    }

    #slidePanel .button-submit {
        background: #2f2f5e;
        color: white;
        padding: 15px;
        width: 100%;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    #slidePanel .plans {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #slidePanel .flex-wrapper {
        display: flex;
        align-items: stretch;
        gap: 20px;
    }

    #slidePanel .dog-cat-section {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    #slidePanel .plan-card {
        background-color: #1e1e6e;
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        text-align: center;
        font-family: Arial, sans-serif;
        color: white;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        #slidePanel .plan-card h3 {
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: bold;
            color: #fff;
        }

        #slidePanel .plan-card button {
            display: block;
            width: 100%;
            margin: 8px 0;
            padding: 10px;
            background-color: #4f4f8f;
            border: none;
            border-radius: 6px;
            color: white;
            font-size: 14px;
            cursor: pointer;
        }

            #slidePanel .plan-card button:hover {
                background-color: #6a6abe;
            }

    #slidePanel .type-grid {
        padding: 20px;
        border-radius: 10px;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        white-space: nowrap;
    }

        #slidePanel .type-grid h3 {
            color: #1e1e6e;
            font-weight: 700;
        }

    /* Slide In Panel */
    #slidePanel .cd-main-content {
        text-align: center;
    }

        #slidePanel .cd-main-content h1 {
            font-size: 2rem;
            color: #64788c;
            padding: 4em 0;
        }

    #slidePanel .cd-btn {
        position: absolute;
        display: inline-block;
        padding: 1em 2em;
        background-color: #67c5c0;
        color: #ffffff;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.2s;
        transform: rotate(-90deg);
        top: 50%;
        right: 0;
        border-radius: 7px;
        margin-right: -60px;
    }

        #slidePanel .cd-btn:hover {
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        }

    #slidePanel .cd-panel {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        visibility: hidden;
        transition: visibility 0s 0.6s;
        z-index: 1;
    }

        #slidePanel .cd-panel::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            cursor: pointer;
            transition: background 0.3s 0.3s;
        }

    #slidePanel .cd-panel--is-visible {
        visibility: visible;
        transition: visibility 0s 0s;
    }

        #slidePanel .cd-panel--is-visible::after {
            background: rgba(0, 0, 0, 0.6);
            transition: background 0.3s 0s;
        }

    #slidePanel .cd-panel__header {
        position: fixed;
        width: 60%;
        right: 0;
        height: 50px;
        line-height: 50px;
        color: #fff;
        background: rgba(255, 255, 255, 0.96);
        z-index: 100000;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
        transform: translateY(-50px);
        transition: transform 0.3s 0s;
    }

        #slidePanel .cd-panel__header h1 {
            background-color: #1e1e6e;
            padding-left: 5%;
            text-align: center;
            font-size: 26px;
            font-weight: 700;
        }

    #slidePanel .cd-panel--is-visible .cd-panel__header {
        transform: translateY(0px);
        transition-delay: 0.3s;
    }

    #slidePanel .cd-panel__close {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 60px;
        color: #fff;
        display: inline-block;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
    }

        #slidePanel .cd-panel__close::before,
        #slidePanel .cd-panel__close::after {
            content: '';
            position: absolute;
            top: 22px;
            left: 20px;
            height: 3px;
            width: 20px;
            background-color: #fff;
            backface-visibility: hidden;
        }

        #slidePanel .cd-panel__close::before {
            transform: rotate(45deg);
        }

        #slidePanel .cd-panel__close::after {
            transform: rotate(-45deg);
        }

        #slidePanel .cd-panel__close:hover {
            background-color: #424f5c;
        }

            #slidePanel .cd-panel__close:hover::before {
                transform: rotate(220deg);
            }

            #slidePanel .cd-panel__close:hover::after {
                transform: rotate(135deg);
            }

    #slidePanel .cd-panel--is-visible .cd-panel__close::before {
        animation: cd-close-1 0.6s 0.3s;
    }

    #slidePanel .cd-panel--is-visible .cd-panel__close::after {
        animation: cd-close-2 0.6s 0.3s;
    }

@keyframes cd-close-1 {
    0%, 50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes cd-close-2 {
    0%, 50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg);
    }
}

#slidePanel .cd-panel__container {
    position: fixed;
    width: 60%;
    height: 100%;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 1;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s 0.3s;
}

#slidePanel .cd-panel--is-visible .cd-panel__container {
    transform: translate3d(0, 0, 0);
    background-color: #e7e7e7;
    transition-delay: 0s;
}

#slidePanel .cd-panel__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px 5%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

    #slidePanel .cd-panel__content p {
        font-size: 1.4rem;
        color: #424f5c;
        line-height: 1.4;
        margin: 2em 0;
    }

        #slidePanel .cd-panel__content p:first-of-type {
            margin-top: 0;
        }

#slidePanel .inline-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    padding-top: 10px;
}

    #slidePanel .inline-container input[type="radio"] {
        appearance: none;
        width: 22px;
        height: 22px;
        border: 2px solid var(--gray);
        border-radius: 50%;
        margin-right: 8px;
        position: relative;
        cursor: pointer;
        vertical-align: middle;
        transition: var(--transition);
    }

        #slidePanel .inline-container input[type="radio"]:checked {
            border-color: var(--info);
            box-shadow: 0 0 0 4px rgb(32 28 107 / 13%);
        }

            #slidePanel .inline-container input[type="radio"]:checked::after {
                content: "";
                position: absolute;
                width: 12px;
                height: 12px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                background-color: var(--info);
            }

        #slidePanel .inline-container input[type="radio"]:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgb(32 28 107 / 13%);
        }

    #slidePanel .inline-container label {
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
    }

    #slidePanel .inline-container input[type="radio"]:checked + label {
        color: var(--info);
    }

#slidePanel .slide-out-button {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 1;
    max-width: 50px;
    overflow: hidden;
    cursor: pointer;
    font-size: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 2px 0 0 2px;
    -moz-border-radius: 2px 0 0 2px;
/*    border-radius: 4px 0 0 4px;*/
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
}

    #slidePanel .slide-out-button i {
        position: absolute;
        top: 0;
        left: 0;
        width: 35px;
        height: 50px;
        color: #83021e;
        padding: 8px 1px 8px 5px;
        font-size: 30px;
        border-radius: 5px 0 0 5;
    }

    #slidePanel .slide-out-button i,
    #slidePanel .slide-out-button.slide-in i {
        background: #4aaedf;
    }

    #slidePanel .slide-out-button i,
    #slidePanel .slide-out-button .slide-out-title {
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

    #slidePanel .slide-out-button .slide-out-title {
        display: block;
        height: 50px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0);
        line-height: 50px;
        padding: 0 15px 0 65px;
        white-space: nowrap;
        background: #282972;
    }

    #slidePanel .slide-out-button:hover,
    #slidePanel .slide-out-button.slide-in {
        max-width: 200px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    }

    #slidePanel .slide-out-button:hover .slide-out-title,
    #slidePanel .slide-out-button.slide-in .slide-out-title {
        color: #ffffff;
    }
