:root {
    --primary-color: rgb(11, 78, 179)
}

*,
*::before,
*::after {
    box-sizing: border-box
}



label {
    display: block;
    margin-bottom: 0.5rem
}

input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    height: 50px
}

.width-50 {
    width: 50%
}

.ml-auto {
    margin-left: auto
}

.text-center {
    text-align: center
}

.progressbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem 0 4rem
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: #dcdcdc;
    z-index: 1
}

.progress {
    background-color:rgb(243, 143, 47);
    width: 0%;
    transition: 0.3s
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: #dcdcdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1
}

.progress-step::before {
    counter-increment: step;
    content: counter(step)
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: calc(100% + 0.5rem);
    font-size: 0.85rem;
    color: #666
}

.progress-step-active {
    background-color: rgb(243, 143, 47);
    color: #f3f3f3
}
@media (max-width: 768px) {
    .progress-step::after {
        display: none;
    }
}

.form {
    margin: 0 auto;
    border: none;
    border-radius: 10px !important;
    overflow: hidden;
    padding: 1.5rem;
    background-color: #fff;
    padding: 20px 30px
}

.step-forms {
    display: none;
    transform-origin: top;
    animation: animate 1s;
}

.step-forms-active {
    display: block
}

.group-inputs {
    margin: 1rem 0
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0
    }

    to {
        transform: scale(1, 1);
        opacity: 1
    }
}

.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.button {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color: rebeccapurple;
    color: #f3f3f3;
    text-align: center;
    cursor: pointer;
    transition: 0.3s
}
.btn-submit {
    font-size: 17px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    width: 67%;
    min-width: 100px;
    max-width: 200px;
    border: 2px solid rgb(243, 143, 47);
    color: white; /* Set initial text color */
    background-color: rgb(243, 143, 47); /* Transparent background */
    transition: color 0.3s, border-color 0.3s; 
}
.btn-submit:hover {
 color: #fff;
}
.btn-prev:hover, .btn-next:hover {
    color: white; /* Change text color on hover */
    background-color: rgb(243, 143, 47); /* Change background color on hover */
}
.btn-total {
    padding: 0.75rem;
    display: block;
    text-decoration: none;
    background-color:  rgb(243, 143, 47);
    text-align: center;
    color: white;
    transition: 0.3s
}
.btn-total:hover{
    color: white !important;
}
.btn-prev, .btn-next {
    font-size: 17px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    width: 67%;
    min-width: 100px;
    max-width: 200px;
    border: 2px solid rebeccapurple;
    color: rebeccapurple; /* Set initial text color */
    background-color: transparent; /* Transparent background */
    transition: color 0.3s, border-color 0.3s; /* Add transition effect */
    text-wrap: nowrap;
}

.btn-prev:hover, .btn-next:hover {
    color: white; /* Change text color on hover */
    background-color: rebeccapurple; /* Change background color on hover */
}

.btn-prev:focus, .btn-next:focus {
    outline: none; /* Remove outline on focus */
}

.btn:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rebeccapurple
}
.disabled{
    cursor: not-allowed !important;
}

.progress-step-check {
    position: relative;
    background-color: rgb(243, 143, 47) !important;
    transition: all 0.8s
}

.progress-step-check::before {
    position: absolute;
    content: '\2713';
    width: 100%;
    height: 100%;
    top: 8px;
    left: 13px;
    font-size: 12px
}

.group-inputs {
    position: relative
}

.group-inputs label {
    font-size: 13px;
    position: absolute;
    height: 19px;
    padding: 4px 7px;
    top: -14px;
    left: 10px;
    color: #a2a2a2;
    background-color: white
}

.welcome {
    height: 450px;
    width: 350px;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center
}

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

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: rebeccapurple;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px rebeccapurple;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none
    }

    50% {
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rebeccapurple
    }
}
        .modal-body {
            max-height: 400px; /* Set a maximum height */
            overflow-y: auto; /* Enable vertical scroll bar */
            }
        .colBigScreen {
            flex: 1 0 0%;
        }

        @media (max-width: 1000px) {
            .colBigScreen {
                flex: 100%;
            }

        }

        .hide {
            display: none;
        }


        .tohover:hover+.hide {
            display: block !important;
            position: inherit !important;
            z-index: 200000 !important;
            /*  display: inline-block; */
            margin-top: 100px !important;
            color: red;
        }
         @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Slab:wght@400;700&display=swap');


        .sous{
            display: none;
            box-shadow: 0px 1px 2px #CCC;
            background-color: white;
            position: absolute;
            width: 100%;
            z-index: 1000;
        }
       
        .sous li{
            float: none;
            width: 100%;
            text-align: left;
        }
        .sous a{
            padding: 10px;
            border-bottom: none;
        }
        .sous a:hover{
            border-bottom: none;
            background-color: RGBa(200,200,200,0.1);
        }
        .deroulant > a::after{
            content:" ▼";
            font-size: 12px;
        }

        
    

            
                

       
        .btn-group-container {
        border-radius: 6px;
        background: #ededed;
        box-shadow: inset 5px 5px 10px #c9c9c9, inset -5px -5px 10px #ffffff;
        }
        .btn-selc {
        background-color: rgba(0, 0, 0, 0);
        color: black;
        border: none;
        font-family: "Montserrat", sans-serif;
        padding: 10px 40px 10px 40px;
        }
        .btn-selc:not(:disabled):not(.disabled).active,
        .btn-selc:not(:disabled):not(.disabled):active,
        .show > .btn-selc.dropdown-toggle {
        border-radius: 6px;
        background: linear-gradient(0deg, #dfdada, #d5cccc);
        box-shadow: 5px 5px 10px #c9c9c9, -5px -5px 10px #ffffff;
        color: black;
        }

        .btn-selc:hover {
        border-radius: 6px;
        background: linear-gradient(90deg, #f2f2f2, #ededed);
        box-shadow: 5px 5px 10px #c9c9c9, -5px -5px 10px #ffffff;
        color: black;
        }
        input[type=radio]:disabled {
        background: #fa0d0d !important;
        }

        #register .container {
        background: url('https://i.pinimg.com/originals/48/79/86/487986c17560a8ed1afdc55e480e5be2.png');
        background-size:cover;
        background-repeat:no-repeat;
        text-align: center;
        font-family: 'Noto Sans', sans-serif;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        }

        #register h1{
        font-weight:400;
        padding-top:0;
        margin-top:0;
        font-family: 'Roboto Slab', serif;
        }

        #register #svg_form_time {
        height: 15px;
        max-width: 80%;
        margin: 40px auto 20px;
        display: block;
        }

        #register #svg_form_time circle,
        #register  #svg_form_time rect {
        fill: white;
        }

        #register .navigation-button {
        background: rgb(237, 40, 70);
        border-radius: 5px;
        padding: 15px 25px;
        display: inline-block;
        margin: 10px;
        font-weight: bold;
        color: white;
        cursor: pointer;
        box-shadow:0px 2px 5px rgb(0,0,0,0.5);
        position: inherit;
        top: 50%;
        }
        .wrapper {
            text-align: center;
        
        }

        #register .disabled {
        display:none;
        }

        #register section {
        padding: 50px ;
        max-width: 1000px;
        margin: 30px auto;
        background:white;
        background:rgba(255,255,255,0.9);
        backdrop-filter:blur(10px);
        box-shadow:0px 2px 10px rgba(0,0,0,0.3);
        border-radius:5px;
        transition:transform 0.2s ease-in-out;
        }


        #register input,select {
        width: 100%;
        margin: 7px 0px;
        display: inline-block;
        padding: 12px 25px;
        box-sizing: border-box;
        border-radius: 5px;
        border: 1px solid lightgrey;
        font-size: 1em;
        font-family:inherit;
        background:white;
        }

        #register p{
        text-align:justify;
        margin-top:0;
        }
        


        .glass-button {
        display: inline-block;
        padding: 24px 32px;
        border: 0;
        text-decoration: none;
        border-radius: 15px;
        background-color: rgba(16, 245, 46, 0.1);
        border: 1px solid rgba(255,255,255,0.1);
        backdrop-filter: blur(30px);
        color: rgba(174, 123, 233, 0.939);
        font-size: 14px;
        letter-spacing: 2px;
        cursor: pointer;
        text-transform: uppercase;
        }

        .glass-button:hover {
        background-color: rgba(255,255,255,0.2);
        }

        /* Extra styles for demo */


      

        .glass-button {
        margin: 43px;
        margin-top: 40px;
        }
        :root {
        --color: rebeccapurple;
        --disabled: #959495;
        }

        *,
        *:before,
        *:after {
        box-sizing: border-box;
        }

        .checkbox {
        display: grid;
        grid-template-columns: -webkit-min-content auto;
        grid-template-columns: min-content auto;
        grid-gap: 0.5em;
        font-size: 1.5rem;
        color: var(--color);
        }
        .checkbox--disabled {
        color: var(--disabled);
        }

        .checkbox__control {
        display: inline-grid;
        width: 1em;
        height: 1em;
        border-radius: 0.25em;
        border: 0.1em solid currentColor;
        }
        .checkbox__control svg {
        transition: transform 0.1s ease-in 25ms;
        transform: scale(0);
        transform-origin: bottom left;
        }

        .checkbox__input {
        display: grid;
        grid-template-areas: "checkbox";
        }
        .checkbox__input > * {
        grid-area: checkbox;
        }
        .checkbox__input input {
        opacity: 0;
        width: 1em;
        height: 1em;
        }
        .checkbox__input input:focus + .checkbox__control {
        box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
        }
        .checkbox__input input:checked + .checkbox__control svg {
        transform: scale(1);
        }
        .checkbox__input input:disabled + .checkbox__control {
        color: var(--disabled);
        }


          /* Hover Effects on Card */

          @media (min-width: 992px) {
          .pricing .card:hover {
          margin-top: -.25rem;
          margin-bottom: .25rem;
          box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
          border-color: #28a745 !important;
          }

          .pricing .card:hover .btn {
          opacity: 1;
          border-color: #28a745 !important;
          }
          }

          .cltactive {

          background-color: #77fa96;
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.23);
          }

          .cltcard {
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15), 0 2px 5px rgba(0, 0, 0, 0.2);
          -webkit-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease;
          }
          .radiobtn{
          -webkit-appearance: none;
          -moz-appearance: none;
          -ms-appearance: none;
          -o-appearance: none;
          appearance: none !important;
          display: none !important;
          }

          .popup {
          width:100%;
          height:100%;
          display:none;
          position:fixed;
          top:0px;
          left:0px;
          background:rgba(0,0,0,0.75);
          }

          /* Inner */
          .popup-inner {
          max-width:700px;
          width:90%;
          padding:40px;
          position:absolute;
          top:50%;
          left:50%;
          -webkit-transform:translate(-50%, -50%);
          transform:translate(-50%, -50%);
          box-shadow:0px 2px 6px rgba(0,0,0,1);
          border-radius:3px;
          background:#fff;
          }

          /* Close Button */
          .popup-close {
          width:30px;
          height:30px;
          padding-top:4px;
          display:inline-block;
          position:absolute;
          top:0px;
          right:0px;
          transition:ease 0.25s all;
          -webkit-transform:translate(50%, -50%);
          transform:translate(50%, -50%);
          border-radius:1000px;
          background:rgba(0,0,0,0.8);
          font-family:Arial, Sans-Serif;
          font-size:20px;
          text-align:center;
          line-height:100%;
          color:#fff;
          }

          .popup-close:hover {
          -webkit-transform:translate(50%, -50%) rotate(180deg);
          transform:translate(50%, -50%) rotate(180deg);
          background:rgba(0,0,0,1);
          text-decoration:none;
          }



          .popup-scroll{
          overflow-y: scroll;
          max-height: 300px;
          padding:0 1em 0 0;
          }
          .popup-scroll::-webkit-scrollbar {background-color:#EEE;width:10px;}
          .popup-scroll::-webkit-scrollbar-thumb {
          border:1px #EEE solid;border-radius:2px;background:#777;
          -webkit-box-shadow: 0 0 8px #555 inset;box-shadow: 0 0 8px #555 inset;
          -webkit-transition: all .3s ease-out;transition: all .3s ease-out;
          }

          .carousel-inner{
              background-color: rgba(255, 250, 250, 0.61);

          backdrop-filter: blur(15px);
          }
          .filter {
            padding: 60px 10px;
            box-sizing: border-box;
            background: #F7F7F7;
            height: calc(100vh - 8px * 2);
            width: 100%;
          }
          .filter__container {
            width: 100%;
            position: relative;
            max-width: 768px;
            margin: 0 auto;
            box-sizing: border-box;
          }
          .filter__title {
            font: 300 48px "Roboto";
            color: #377C2B;
            text-align: center;
            margin-bottom: 50px;
          }
          .filter__list {
            display: flex;
            align-items: stretch;
            justify-content: center;
            margin-bottom: 60px;
          }
          .filter__item {
            padding: 15px;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: 3px;
            background: white;
            margin-right: 10px;
            transition: background 0.2s ease-in-out;
          }
          .filter__item:last-child {
            margin-right: 0;
          }
          .filter__item_is-active {
            background: #8DC63F;
          }
          .filter__item_is-active .filter__label {
            color: white;
          }

          .filter__item_is-active .filter__label_tv::before {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='25'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%23FFFFFF' stroke-width='2'%3E%3Cpath d='M27.6 16c.2 0 .4-.2.4-.4V1.4c0-.2-.2-.4-.4-.4H1.4c-.2 0-.4.2-.4.4v14.2c0 .2.2.4.4.4h26.2z'/%3E%3Cpath d='M10 19h8M2 24h25M11 8.8l3.4 2.8L19.6 5'/%3E%3C/g%3E%3C/svg%3E");
          }

          .filter__input {
            flex-shrink: 0;
          }
          .filter__label {
            cursor: pointer;
            font: 400 16px "Roboto";
            color: rgba(0, 0, 0, 0.5);
            margin-right: 30px;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            width: 100%;
            flex-shrink: 1;
          }
          .filter__label::before {
            content: "";
            display: block;
            flex-shrink: 0;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            margin-right: 30px;
            transition: background 0.2s ease-in-out;
          }

          .filter__label_tv::before {
            width: 29px;
            height: 25px;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='25'%3E%3Cg fill='none' fill-rule='evenodd' stroke='%238DC63F' stroke-width='2'%3E%3Cpath d='M27.6 16c.2 0 .4-.2.4-.4V1.4c0-.2-.2-.4-.4-.4H1.4c-.2 0-.4.2-.4.4v14.2c0 .2.2.4.4.4h26.2z'/%3E%3Cpath d='M10 19h8M2 24h25M11 8.8l3.4 2.8L19.6 5'/%3E%3C/g%3E%3C/svg%3E");
          }

          .input {
            display: inline-flex;
            align-items: center;
          }
          .input__label {
            cursor: pointer;
            flex-shrink: 0;
          }
          .input_disabled {
            opacity: 0.5;
            cursor: default;
            pointer-events: none;
            user-select: none;
          }
          .input_toggle .input__label {
            width: 35px;
            height: 18px;
            box-sizing: border-box;
            position: relative;
            border-radius: 100px;
            transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
            border: 2px solid #D0D0D0;
            background: #D0D0D0;
          }
          .input_toggle .input__label::before {
            content: "";
            position: absolute;
            top: calc(50% - 12px / 2);
            left: 2px;
            width: 12px;
            height: 12px;
            display: block;
            flex-shrink: 0;
            border-radius: 50%;
            background: white;
            transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
          }
          .input_toggle .input__source {
            display: none;
            opacity: 0;
            visibility: hidden;
          }
          .input_toggle .input__source:checked ~ .input__label::before {
            transform: translateX(calc(100% + 4px));
          }
          .input_toggle .input__source:checked ~ .input__label {
            border: 2px solid #8DC63F;
            background: #8DC63F;
          }
          .input_toggle .input__source:checked ~ .input__label::before {
            background: white;
          }
          .input_toggle.input_theme_light .input__source:checked ~ .input__label {
            border: 2px solid white;
            background: white;
          }
          .input_toggle.input_theme_light .input__source:checked ~ .input__label::before {
            background: #8DC63F;
          }    
          .popup-scroll::-webkit-scrollbar-track {-webkit-box-shadow: 0 0 2px #ccc;box-shadow: 0 0 2px #ccc;}	



          .dropdown {
            position: relative;
            display: inline-block;
          }

          .dropdown-content {
          
            position: absolute;
              z-index: 1000;
              display: none;
              min-width: 10
          rem
          ;
              padding: 0.5
          rem
          0;
              margin: 0;
              font-size: 1rem;
              color: #212529;
              text-align: left;
              list-style: none;
              background-color: #fff;
              background-clip: padding-box;
              border: 1
          px
          solid rgba(0,0,0,.15);
              border-radius: 0.25
          rem
          ;
          }

          .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
          }

          .dropdown-content a:hover {background-color: #ddd;}

          .dropdown:hover .dropdown-content {display: block;}

          .tacbox {
            display:flex;
            padding: 1em;
            margin: 2em;
            border: 3px solid #ddd;
            background-color: #eee;
            max-width: 360px;
          }
          .tacbox input {
            height: 2em;
            
            vertical-align: middle;
            width: 25px !important;
          }

          .navigation-buttonWrap {
            position: relative;
          }

          #blocker {
            position: absolute;
            height: 100%;
            width: 100%;
            background: rgba(255,255,255,0.7);
          }

          button[disabled=disabled], button:disabled {
              cursor: not-allowed !important;
              background-color: rgb(131 79 87) !important;
          }

    
    
        :root {
            --cardss-line-height: 1.2em;
            --cardss-padding: 1em;
            --cardss-radius: 0.5em;
            --color-green: #558309;
            --color-gray: #e2ebf6;
            --color-dark-gray: #c4d1e1;
            --radio-border-width: 2px;
            --radio-size: 1.5em;
        }



        .grid {
            display: grid;
            grid-gap: var(--card-padding);
            margin: 0 auto;
            max-width: 60em;
            padding: 0;
        }

        @media (min-width: 42em) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .cardss {
            background-color: #fff;
            border-radius: var(--cardss-radius);
            position: relative;
        }

        .cardss:hover {
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
        }

        .radio {
            font-size: inherit;
            margin: 0;
            position: absolute;
            right: calc(var(--cardss-padding) + var(--radio-border-width));
            top: calc(var(--cardss-padding) + var(--radio-border-width));
        }

        @supports (-webkit-appearance: none) or (-moz-appearance: none) {
            .radio {
                -webkit-appearance: none;
                -moz-appearance: none;
                background: #fff;
                border: var(--radio-border-width) solid var(--color-gray);
                border-radius: 50%;
                cursor: pointer;
                height: var(--radio-size);
                outline: none;
                transition: background 0.2s ease-out, border-color 0.2s ease-out;
                width: var(--radio-size);
            }

            .radio::after {
                border: var(--radio-border-width) solid #fff;
                border-top: 0;
                border-left: 0;
                content: "";
                display: block;
                height: 0.75rem;
                left: 25%;
                position: absolute;
                top: 50%;
                transform: rotate(45deg) translate(-50%, -50%);
                width: 0.375rem;
            }

            .radio:checked {
                background: var(--color-green);
                border-color: var(--color-green);
            }

            .cardss:hover .radio {
                border-color: var(--color-dark-gray);
            }

            .cardss:hover .radio:checked {
                border-color: var(--color-green);
            }
        }

        .plan-details {
            border: var(--radio-border-width) solid var(--color-gray);
            border-radius: var(--cardss-radius);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            padding: var(--cardss-padding);
            transition: border-color 0.2s ease-out;
        }

        .cardss:hover .plan-details {
            border-color: var(--color-dark-gray);
        }

        .radio:checked~.plan-details {
            border-color: rebeccapurple;
        }

        .radio:focus~.plan-details {
            box-shadow: 0 0 0 2px var(--color-dark-gray);
        }

        .radio:disabled~.plan-details {
            color: var(--color-dark-gray);
            cursor: default;
        }

        .radio:disabled~.plan-details .plan-type {
            color: var(--color-dark-gray);
        }

        .cardss:hover .radio:disabled~.plan-details {
            border-color: var(--color-gray);
            box-shadow: none;
        }

        .cardss:hover .radio:disabled {
            border-color: var(--color-gray);
        }

        .plan-type {
            color: rgb(243, 143, 47);
            font-size: 1.5rem;
            font-weight: bold;
            line-height: 1em;
        }

        .plan-cost {
            font-size: 2.5rem;
            font-weight: bold;
            padding: 0.5rem 0;
        }

        .slash {
            font-weight: normal;
        }

        .plan-cycle {
            font-size: 2rem;
            font-variant: none;
            border-bottom: none;
            cursor: inherit;
            text-decoration: none;
        }

        .hidden-visually {
            border: 0;
            clip: rect(0, 0, 0, 0);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            white-space: nowrap;
            width: 1px;
        }

        @media only screen and (max-width: 450px) {
            .hide {
                background-color: #fff;
                margin-top: -210px !important;
                z-index: 5000000;
            }


        }


  .checkbox-wrapper-16 *,
  .checkbox-wrapper-16 *:after,
  .checkbox-wrapper-16 *:before {
    box-sizing: border-box;
  }

  .checkbox-wrapper-16 .checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
  .img-fluid{
    border-radius: 0px;
    width: 100%;
  }
  /* Selected Checkbox Style */
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile {
    background-color: rgba(243, 143, 47, 0.3); /* Lighter yellow background */
    color: black !important; /* Text color stays black */
    border-color: rgb(243, 143, 47); /* Retain yellow border */
    box-shadow: 0 4px 12px rgba(243, 143, 47, 0.3); /* Soft yellow shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
  }

  /* Before element (for visual feedback) */
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: rgba(243, 143, 47, 0.3); /* Lighter yellow */
    border-color: rgba(243, 143, 47, 0.5); /* Lighter border */
  }

  /* Text colors when the card is selected */
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-icon,
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .card-title,
  .checkbox-wrapper-16 .checkbox-input:checked + .checkbox-tile .checkbox-label {
    color: white; /* White text color for contrast */
  }

  /* Focused checkbox style */
  .checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile {
    border-color: rgb(243, 143, 47); /* Yellow border */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(243, 143, 47, 0.3); /* Focus glow */
  }

  /* Focused before element */
  .checkbox-wrapper-16 .checkbox-input:focus + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: rgba(243, 143, 47, 0.5); /* Slightly stronger yellow */
    border-color: rgba(243, 143, 47, 0.5); /* Stronger border */
  }

  

  .checkbox-wrapper-16 .checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 7rem;
    cursor: pointer;
    position: relative;
  }
  .checkbox-wrapper-16 .checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .checkbox-wrapper-16 .checkbox-tile:hover {
    border-color: rgb(243, 143, 47);
  }
  .checkbox-wrapper-16 .checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
  }

  .checkbox-wrapper-16 .checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
  }
  .checkbox-wrapper-16 .checkbox-icon svg {
    width: 3rem;
    height: 3rem;
  }

  .checkbox-wrapper-16 .checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
  }




.input-error {
    border-color: red;
    border: 1px solid red;
}
/* Radio buttons style */


/* Parent info section style */
#glass-panel {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

#father-info {
    display: none;
    margin-top: 20px;
    color: rebeccapurple; 
    font-size: 24px; 
    font-weight: bold;
    text-align: center; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); 
}


#father-info p {
    margin-bottom: 10px;
}

.accept-parent {
    margin-top: 10px;
}





* {
  box-sizing: border-box;
}

#positions {
    display: flex;
    justify-content: space-around;
}


.radio-box {
  position: relative;
  width: 300px;
  margin: 25px auto;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
  background-color: #DFDFD1;
}

.radio-label {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 21px;
    border-bottom: 4px solid lightsteelblue;
    cursor: pointer;
    padding: 15px;
    height: 50px;
}
.radio-label:last-of-type {
  -moz-box-shadow: 0 0 0;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  border: none;
}
.radio-btn:disabled + .radio-label {
    color: #999; /* Change color when disabled */
    cursor: not-allowed !important; /* Change cursor when disabled */
}
.radio-btn:checked + .radio-label {
    background-color: rebeccapurple !important;
    color: #fff !important; /* Change color when disabled */
}

.radio-btn {
  width: 100%;
  position: relative;
  height: 50px;
  position: absolute;
  top: 50px;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.marker {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 2;
  display: inline-block;
  background-color: rgb(243, 143, 47);
  top: 50px;
  left: -1px;
  background-color: rgb(243, 143, 47);
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI3OWY5ZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJmYmZiZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgb(243, 143, 47)), color-stop(100%, rgb(243, 143, 47)));
  background-image: -moz-linear-gradient(left, rgb(243, 143, 47) 0%, rgb(243, 143, 47) 100%);
  background-image: -webkit-linear-gradient(left, rgb(243, 143, 47) 0%, rgb(243, 143, 47) 100%);
  background-image: linear-gradient(to right, rgb(243, 143, 47) 0%, rgb(243, 143, 47) 100%);
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 4px;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -moz-animation: markmove 2s;
  -webkit-animation: markmove 2s;
  animation: markmove 2s;
}
.marker:after {
  content: '';
  position: absolute;
  border: 16px solid transparent;
  border-left: 15px solid rgb(243, 143, 47);
  left: 100%;
  top: 0;
}
.marker{
    opacity: 0.7;
}

.radio-box .radio-btn:nth-of-type(1) {
  top: 0px;
}
.radio-box .radio-btn:nth-of-type(1):checked ~ .marker {
  top: 10px;
}
.radio-box .radio-btn:nth-of-type(1):checked + .radio-label {
  color: rebeccapurple;
  background-color: rgba(255, 255, 255, 0.2);
}
.radio-box .radio-btn:nth-of-type(1):hover ~ .marker {
  top: 10px !important;
}

.radio-box .radio-btn:nth-of-type(2) {
  top: 50px;
}
.radio-box .radio-btn:nth-of-type(2):checked ~ .marker {
  top: 60px;
}
.radio-box .radio-btn:nth-of-type(2):checked + .radio-label {
  color: rebeccapurple;
  background-color: rgba(255, 255, 255, 0.2);
}
.radio-box .radio-btn:nth-of-type(2):hover ~ .marker {
  top: 60px !important;
}

.radio-box .radio-btn:nth-of-type(3) {
  top: 100px;
}
.radio-box .radio-btn:nth-of-type(3):checked ~ .marker {
  top: 110px;
}
.radio-box .radio-btn:nth-of-type(3):checked + .radio-label {
  color: rebeccapurple;
  background-color: rgba(255, 255, 255, 0.2);
}
.radio-box .radio-btn:nth-of-type(3):hover ~ .marker {
  top: 110px !important;
}

.radio-box .radio-btn:nth-of-type(4) {
  top: 150px;
}
.radio-box .radio-btn:nth-of-type(4):checked ~ .marker {
  top: 160px;
}
.radio-box .radio-btn:nth-of-type(4):checked + .radio-label {
  color: rebeccapurple;
  background-color: rgba(255, 255, 255, 0.2);
}
.radio-box .radio-btn:nth-of-type(4):hover ~ .marker {
  top: 160px !important;
}

.radio-box .radio-btn:nth-of-type(5) {
  top: 200px;
}
.radio-box .radio-btn:nth-of-type(5):checked ~ .marker {
  top: 210px;
}
.radio-box .radio-btn:nth-of-type(5):checked + .radio-label {
  color: rebeccapurple;
  background-color: rgba(255, 255, 255, 0.2);
}
.radio-box .radio-btn:nth-of-type(5):hover ~ .marker {
  top: 210px !important;
}

@-moz-keyframes markmove {
  0% {
    -moz-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  50% {
    -moz-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes markmove {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  50% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes markmove {
  0% {
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  50% {
    -moz-transform: translateY(150px);
    -ms-transform: translateY(150px);
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}


/* Center modal vertically */
.modal.show .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* full screen height */
  margin: 0 auto;
}

/* Modal fade and scale animation */
@keyframes modalFadeZoom {
  from {
      opacity: 0;
      transform: scale(0.8);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.modal.show .modal-content {
  animation: modalFadeZoom 0.3s ease-out;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.checkbox-wrapper-26 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  position: relative;
}

.checkbox-wrapper-26 input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-in-out;
}

.checkbox-wrapper-26 input[type="checkbox"]:checked {
  background-color: rebeccapurple;
  border-color: rebeccapurple;
}

.checkbox-wrapper-26 input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-file-upload {
  background-color: white;
  color: rebeccapurple;
  padding: 8px 14px;
  border-radius: 4px;
  border: 2px solid rebeccapurple;
  cursor: pointer;
  float: left;
  width: 100%;
  transition: background-color 0.3s ease-in-out;
}

.custom-file-upload:hover {
  color: white;
  background-color: rebeccapurple;
}

.form-control {
  border-radius: 4px;
  padding: 8px 12px;
}

.error,
.text-danger {
  color: #dc3545;
  font-size: 14px;
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 16px;
}

.insight-list li {
  padding: 8px 12px;
  background: #f1f3f5;
  margin-bottom: 6px;
  border-radius: 5px;
}

.insight-list li strong {
  color: rebeccapurple;
}

.btn-total {
  background-color: white;
  color: rebeccapurple;
  padding: 8px 14px;
  border: 2px solid rebeccapurple;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-total:hover {
  background-color: rebeccapurple;
  color: white;
}


/* Tabs Styling */
.nav-tabs {
  background-color: #663399;
  border-radius: 8px;
  overflow: hidden;
}

.nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}

.nav-tabs .nav-link {
  color: white;
  background-color: transparent;
  border: none;
  font-weight: bold;
  padding: 12px 20px;
}

.nav-tabs .nav-link.active {
  background-color: rgb(243, 143, 47);
  color: white;
  border-radius: 0;
}

/* Search and Category Filter Styling */
.row.mb-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

#searchInput, #categoryFilter,.choices__inner {
  height: 50px;
  border: 2px solid rgb(243, 143, 47);
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
}

#searchInput::placeholder {
  color: #999;
}

/* Make sure form groups are aligned */
.form-group {
  margin-bottom: 0;
}

/* On focus */
#searchInput:focus, #categoryFilter:focus {
  box-shadow: 0 0 5px rgb(243, 143, 47);
}

/* Optional: Smooth transition */
#searchInput, #categoryFilter, .nav-link {
  transition: all 0.3s ease;
} 


/* course cards style*/ 
/* Card Container */

.courses-cotainer .card {
  background-color: white;
  border: 2px solid rgb(243, 143, 47);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

/* Checkbox Tile */
.checkbox-wrapper-16 {
  width: 100%;
  height: 100%;
}

.checkbox-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}

.checkbox-input {
  display: none;
}

/* Checkbox Tile Content */
.checkbox-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image */
.checkbox-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card Body */
.courses-cotainer .card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: black;
}

/* Title */
.course-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #663399; /* rebecca purple */
  text-align: center;
}

/* Category */
.courses-cotainer .card-text {
  font-size: 14px;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}

/* Price Section */
.course-price {
  padding: 10px;
  border-top: 1px solid rgb(243, 143, 47);
  margin-top: 10px;
  text-align: center;
  color: black;
  font-weight: bold;
}

/* "Prix" text inside */
.course-price span {
  color: #663399;
  font-size: 14px;
}

/* Price value */
.course-price p {
  color: rgb(243, 143, 47);
  margin: 5px 0;
  font-size: 18px;
}

/* BV and icon */
.course-price i {
  margin-left: 5px;
  color: #663399;
}


#pagination-controls {
  text-align: center;
  margin-top: 20px;
}

#pagination-controls button {
  border: none;
  background-color: white;
  color: rebeccapurple;
  font-weight: bold;
  padding: 8px 12px;
  margin: 0 3px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#pagination-controls button:hover {
  background-color: orange;
  color: white;
}

#pagination-controls button.btn-primary {
  background-color: rebeccapurple;
  color: white;
}

#pagination-controls button.btn-outline-primary {
  background-color: white;
  border: 2px solid rebeccapurple;
  color: rebeccapurple;
}

#pagination-controls button.btn-outline-primary:hover {
  background-color: rebeccapurple;
  color: white;
}

#pagination-controls button.btn-secondary {
  background-color: orange;
  color: white;
}

#pagination-controls button:disabled {
  background-color: #ccc;
  color: white;
  cursor: not-allowed;
}

/* Optional: dots style */
#pagination-controls span {
  color: rebeccapurple;
  font-weight: bold;
}