.tab-input {
            position: absolute;
            opacity: 0;
            z-index: -1;
        }
        /* Accordion styles */
        .tabs {
            overflow: hidden;
        }

        .tab {
            width: 100%;
            overflow: hidden;
        }

        .tab-label {
            display: flex;
            justify-content: space-between;
            padding: 4px 10px;
            margin-top: 25px;
            font-weight: bold;
            cursor: pointer;
            font-size: 18px;
            /* Icon */
        }

        .tab-label:hover {
            color: #0E3989;
        }

        .tab-label::after {
            content: "\002B";
            width: 1em;
            height: 1em;
            text-align: center;
            font-size: 24px;
            margin-top: -5px;
            transition: all .35s;
        }

        .tab-content {
            max-height: 0;
            padding: 0 1em;
            transition: all .35s;
            border-bottom: 1px solid;
            overflow: hidden;
        }

        .tab-close {
            display: flex;
            justify-content: flex-end;
            padding: 1em;
            font-size: 0.75em;
            cursor: pointer;
        }

        label {
            font-size: 24px;
            /*font-family: "Caviar Dreams", Caviar;*/
        }

        input:checked + .tab-label::after {
            content: "\2212";
        }

        input:checked ~ .tab-content {
            max-height: 100vh;
            padding: 1em;
        }

        /* The container */
        .radioContainer {
            display: block;
            position: relative;
            padding-left: 35px;
            margin-bottom: 12px;
            cursor: pointer;
            font-size: 18px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Hide the browser's default radio button */
        .radioContainer input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

        /* Create a custom radio button */
        .checkmark {
            position: absolute;
            top: 3px;
            left: 0;
            height: 18px;
            width: 18px;
            background-color: #77BA5D;
            border-radius: 50%;
        }

        /* On mouse-over, add a grey background color */
        .radioContainer:hover input ~ .checkmark {
            background-color: #77BA5D;
        }

        /* When the radio button is checked, add a blue background */
        .radioContainer input:checked ~ .checkmark {
            background-color: #77BA5D;
        }

        /* Create the indicator (the dot/circle - hidden when not checked) */
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        /* Show the indicator (dot/circle) when checked */
        .radioContainer input:checked ~ .checkmark:after {
            display: block;
        }

        /* Style the indicator (dot/circle) */
        .radioContainer .checkmark:after {
            top: 4px;
            left: 4px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #0E3989;
        }
        .alphabet{
            color:#77BA5D;
            padding: 4px 10px 4px 10px;
            font-size: 16px;
            margin: 0 4px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 2px;
            border: 2px solid #77BA5D;
        }
        .alphabet.active{
            background-color: #77BA5D;
            color: #fff;
        }
        .deskalp{
            display: block;
            background: #fff;
            padding: 20px 10px;
            max-width: 98.5%;
            overflow: auto;
            box-shadow: 0 2px 5px 0 hsl(0deg 4% 75% / 83%);
            margin-left: 1%;
        }
        .mobalp{
            display: none;
        }
        .dsksort{
            float: right;margin-right: 7.5%;
            margin-bottom: 1%;
        }
        .mobsort{
            display: none;
        }
        @media(max-width: 767px){
            .deskalp{
                display: none !important;
             }
            .mobalp{
                display: block !important;
                background: #fff;
                padding: 10px 10px;
                max-width: 98.5%;
                overflow: auto;
                box-shadow: 0 0px 0px 0 hsl(0deg 4% 75% / 83%);
                margin-left: 7%;
                margin-right: 3%;
            }
            .alphabet{
                color:#000;
                padding: 6px 6px 6px 6px;
                font-size: 13px;
                margin: 0 6px;
                font-weight: 400;
                text-transform: uppercase;
                cursor: pointer;
                border-radius: 2px;
                border: 2px solid #0006;
            }
            .dsksort{
                display: none !important;
             }
             .mobsort{
                display: block !important;
                margin-left: 44%;
                margin-top: 5%;
                margin-bottom: 5%;
             }
        }
        .moblalg{
            
        }