﻿:root {
    /*Colors Start*/
    /*<-==========================================->*/
    --Color1-Pure-Black: #000000;
    --Color1-Pure-white: #ffffff;
    --Color-OffWhite: #f4f4f4;
    --primary: #35C27E;
    --RGBAprimary: 4, 172, 76;
    --DischemSecondary: #35C27E; /*#249445*/
    --dischemGray: #f5f5f5;
    --secondary-100: #FFE600;
    --disabledstate: #004d23;
    --cancel-red: #DC3E3E;
    /*Colors End*/
    /*<-==========================================->*/
    /*Font size Start*/
    /*<-==========================================->*/
    --fs-normal: 1.6rem;
    --fs-700: 4rem;
    --fs-600: 3.4rem;
    --fs-550: 2.2rem;
    --fs-500: 2rem;
    --fs-400: 1.9rem;
    --fs-300: 1.8rem;
    --fs-200: 16px;
    --fs-150: 15px;
    --fs-100: 12px;
    --fs-50: 8px;
    /*Font Size End*/
    /*<-==========================================->*/
    /*Font weight Start*/
    /*<-==========================================->*/
    --fw-400: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-900: 900;
    /*Font weight End*/
    /*<-==========================================->*/
}

/* <-==========================-> */
/* CSS REST */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    touch-action: manipulation;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

p,
label, span {
    font-size: 16px;
}

/* CSS REST End*/
/* <-==========================-> */

html {
    font-size: 62.5%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--fw-400);
    background-color: var(--dischemGray);
    line-height: 1.6;
    color: var(--clr-primary-300);
    height: 100%;
    margin: 0;
    width: 100%;
}

form {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: var(--fw-400);
    background-color: var(--dischemGray);
    line-height: 1.6;
    color: var(--clr-primary-300);
    height: 100%;
    margin: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

h2 {
    font-size: var(--fs-700);
}

::selection {
    background: var(--primary);
    color: var(--Color1-Pure-white);
}
/*Header Start*/
/*<-==========================================->*/
.Logo {
    margin: 0;
    position: relative;
    background-color: var(--primary);
}

    .Logo::before {
        content: "";
        position: absolute;
        top: 0rem;
        left: 0;
        background-color: var(--primary);
        width: 100%;
        height: 2rem;
    }

.Logo--img {
    padding: 1rem;
    margin: 2rem auto 0 auto;
    background-color: transparent;
    max-width: 19.3rem;
    width: 100%;
    height: 4.5rem;
    margin-bottom: 1.5rem;
    z-index: 1000;
    position: relative;
}

.Logo--img-2 {
    height: 6.5rem;
    margin: 0 auto;
    max-width: 16.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

/*Header End*/
/*<-==========================================->*/
/*Body Start*/
/*<-==========================================->*/

.Block-Element {
    background-color: transparent;
    padding: 0rem 1rem;
}

    .Block-Element > div:last-child {
        margin-bottom: 1rem;
    }

.btn-Dimensions,
.btn-Dimensions--large, .btn-Dimensions--xxlarge,
.btn-Dimensions--medium {
    padding: 1rem 1.5rem 1rem 1.5rem;
    min-height: 5rem;
    max-height: 5rem;
    margin: 0rem auto;
    display: grid;
    grid-template-columns: minmax(6rem, 330px);
    -webkit-grid-template-columns: minmax(6rem, 330px);
    align-items: center;
    max-width: 100%;
    width: 33rem;
    border-radius: 5rem;
    font-weight: var(--fw-600);
    letter-spacing: 1px;
}

btn-Dimensions--large, .btn-Dimensions--xxlarge {
    max-width: 32.5rem;
    width: 100%;
    grid-template-columns: minmax(6rem, 325px);
    -webkit-grid-template-columns: minmax(6rem, 325px);
    padding: 0.2rem 1.5rem;
}


.btn-ColorSet:focus,
.btn-ColorSetCyan:focus,
.btn-ColorSetCyan:hover,
.btn-ColorSet:hover,
.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
    color: var(--Color1-Pure-white);
    outline: 0;
    box-shadow: 0 0 0 0.25rem transparent;
}


.btn-ColorSet-Secondary:focus,
.btn-ColorSet-Secondary:hover {
    color: var(--Color1-Pure-Black);
}

.btn-ColorPrimary {
    background-color: var(--DischemSecondary);
    color: var(--Color1-Pure-white);
    font-size: var(--fs-150);
    border: 1px solid var(--DischemSecondary);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
}

.Heading_BackGround {
    background: var(--dischemGray);
    margin: 1.5rem 0;
    margin-right: -7px;
    margin-left: -7px;
}

.Setbackground_Green {
    background: var(--primary);
}

.text--center {
    text-align: center;
}

.heading-Info,
.heading__normal {
    color: var(--Color1-Pure-Black);
    background: var(--dischemGray);
    font-size: var(--fs-550);
    font-weight: var(--fw-600);
    text-align: center;
    padding: .8rem 0;
    border-radius: 1rem;
    max-width: 25rem;
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
}

.heading__normal {
    color: var(--Color1-Pure-Black);
    background-color: transparent;
    font-weight: var(--fw-400);
    font-size: var(--fs-200);
}

.heading-Info {
    font-size: var(--fs-400);
}

.Setbackground_Green .heading-Info {
    color: var(--Color1-Pure-white);
    background: var(--primary);
}

.Container--Parent {
    width: 100%;
    max-width: 34rem;
    margin: 1rem auto;
}

Dischem--Card {
    border: 1px solid transparent;
    border-radius: 1.2rem 0 1.2rem 0;
    width: 96%;
    margin: 0 1.6%;
}

.Dischem--Card div:first-of-type {
    border-radius: 1.2rem 0 0 0;
}

.Dischem--Card div:last-of-type {
    border-radius: 0 0 1.2rem 0;
}

btn_Dischem--Card::first-letter {
    text-transform: uppercase;
}

.Dischem--Card div, .btn_Dischem--Card {
    border: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    grid-gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    min-height: 7rem;
    text-align: left;
    width: 100%;
    font-weight: var(--fw-600);
    background: var(--Color1-Pure-white);
    position: relative;
}

.Dischem--Content {
    font-size: var(--fs-200);
    width: 165px;
    overflow: hidden;
}

.btn_Dischem--Card {
    padding: 0;
}

.Dischem--Card div:not(:last-of-type)::before {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    height: .1rem;
    width: 94%;
    background: var(--Color1-Pure-Black);
    margin: 0 3%;
    z-index: 1;
}

.Dischem_RadioBoxWrap {
    width: 96%;
    margin: 0 1.6% 0 0;
}

    .Dischem_RadioBoxWrap blockquote {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        padding: 2.8rem 1rem;
        width: 100%;
        border-bottom: 1px solid #000;
        position: relative;
    }

    .Dischem_RadioBoxWrap input[type="radio"]::before,
    .Dischem_RadioBoxWrap .YesNo input[type="radio"]::before {
        content: "";
        width: 4rem;
        height: 4rem;
        padding: 1.2rem 0.8rem;
        border-radius: 50%;
        background-size: contain;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--dischemGray);
        transition: all .25s ease-in;
        position: absolute;
        right: 0;
        top: 25%;
        z-index: 100;
        cursor: pointer;
    }

    .Dischem_RadioBoxWrap .YesNo input[type="radio"]::before {
        right: 5rem;
        top: 25%;
    }

    .Dischem_RadioBoxWrap input[type="radio"]::after,
    .Dischem_RadioBoxWrap .YesNo input[type="radio"]::after {
        content: "";
        background-image: url(../Images/pack.png);
        max-width: 100%;
        max-height: 100%;
        width: 2.5rem;
        height: 2.5rem;
        filter: brightness(1) invert(.3);
        -webkit-filter: brightness(1) invert(.3);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        right: 0.9rem;
        top: 37%;
        z-index: 100;
        cursor: pointer;
    }

    .Dischem_RadioBoxWrap .NoYes input[type="radio"]::after {
        background-image: url(../Images/stop.png);
        width: 2.2rem;
        height: 2.2rem;
    }

    .Dischem_RadioBoxWrap .YesNo input[type="radio"]::after {
        right: 5.7rem;
        top: 35%;
    }

    .Dischem_RadioBoxWrap label {
        width: 96%;
        display: inline-block;
        cursor: pointer;
    }

    .Dischem_RadioBoxWrap input[type="radio"]:checked::before,
    .Dischem_RadioBoxWrap .YesNo input[type="radio"]:checked::before {
        background: #35c27e;
    }

    .Dischem_RadioBoxWrap .NoYes input[type="radio"]:checked::before {
        background: red;
    }

    .Dischem_RadioBoxWrap input[type="radio"]:checked::after,
    .Dischem_RadioBoxWrap .YesNo input[type="radio"]:checked::after {
        filter: brightness(0) invert(1) !important;
        -webkit-filter: brightness(0) invert(1) !important;
    }

    .Dischem_RadioBoxWrap blockquote:last-child {
        border: 0;
    }

.Dischem--Card blockquote .Dischem_RadioBoxWrap {
    margin-bottom: 2rem;
}

.SETborder2 {
    border-radius: 1.2rem 0 1.2rem 0 !important;
}

.Dischem_RadioBoxWrap textarea {
    --textarea-height: 12rem;
    height: var(--textarea-height);
    padding: calc(var(--textarea-height) / 2) 0;
    width: 100%;
    border: 0;
    font-size: var(--fs-200);
    text-align: center;
    overflow: hidden;
    resize: none;
}

    .Dischem_RadioBoxWrap textarea:focus,
    .Dischem_RadioBoxWrap textarea:focus-visible {
        outline: none;
        border: 0;
    }

.Disclaimer_Card {
    position: relative;
    z-index: 200;
}

.Dischem_RadioBoxWrap textarea::placeholder {
    color: rgba(0,0,0,0.2);
}

.Disclaimer_Card::before,
.Disclaimer_Card::after {
    content: "";
    background-image: url(../Images/Group_651.png);
    position: absolute;
    bottom: 7px;
    left: -7px;
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    width: 2.5rem;
    height: 2.5rem;
    z-index: -1;
    background-size: contain;
    background-position: center;
}

.Disclaimer_Card::after {
    bottom: unset;
    top: -7px;
    left: unset;
    right: -7px;
}

.Disclaimer_Card div {
    padding: 1rem;
}

.ContentBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0rem auto;
    padding: 1.5rem;
    background: #fff;
    height: calc(100vh - 12.8rem);
}

    .ContentBox .ClickHere {
        background-color: var(--primary);
        font-size: 1.5em;
        font-weight: 700;
        padding: 8px 5px 8px 5px;
        border-radius: 25px;
        border: none;
        width: 100%;
        max-width: 30.6rem;
        min-width: 26.6rem;
        text-align: center;
        position: relative !important;
        z-index: 100;
        margin: 2rem auto 2rem 2rem;
    }

        .ContentBox .ClickHere a {
            color: #fff;
        }

    .ContentBox p {
        color: #000;
        margin: 0;
        font-size: 2.5rem;
        font-weight: 400;
        max-width: 46rem;
        width: 100%;
        margin: 2rem auto 4rem 2rem;
        text-align: left;
    }

    .ContentBox .Done {
        color: var(--primary);
        font-size: 6rem;
        font-weight: 700;
        padding-left: 1rem;
    }

    .ContentBox .Cancel {
        max-width: fit-content;
        font-size: 5rem;
    }

.ClickHere input[type="button"] {
    background: transparent;
    border: 0;
    color: var(--Color1-Pure-white);
    font-size: 1.6rem;
    display: inline-block;
    width: 100%;
    height: 100%;
}


.ContentBox .row p label:first-child {
    font-weight: bold;
}

.ContentBox .row p span,
.ContentBox .row p label {
    font-size: 2.5rem;
    font-weight: 400;
}

.ContentBox .row p {
    margin: 1rem auto 0 2rem;
}

.btn_Home {
    border: 0;
    background-color: transparent;
    color: var(--Color1-Pure-white);
    font-size: 1.6rem;
}
.NoSelected {
    opacity: 0.9;
    pointer-events: none;
}
/*Body End*/
/*<-==========================================->*/
/*Footer Start*/
/*<-==========================================->*/
.Content__bottom {
    background-color: var(--dischemGray);
    padding: 7rem 1.5rem 7rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    align-items: center;
    margin-top: auto;
    width: 100%;
    height: 110px;
}

.setFixed--Wrap {
    width: 100%;
    width: 100%;
    height: 120px;
    display: grid;
    align-items: center;
    justify-content: center;
    background: var(--dischemGray);
    pointer-events: none;
}

.setFixed {
    position: fixed;
    bottom: 0rem;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10000;
}

    .setFixed .btn-Dimensions {
        pointer-events: auto;
    }


.Needhelp {
    font-weight: var(--fw-600);
    color: #b6b3b3;
    text-align: center;
    font-size: var(--fs-150);
}

    .Needhelp a {
        color: #b6b3b3;
        pointer-events: auto;
        text-decoration: none;
        cursor: pointer;
    }

/*Footer End*/
/*<-==========================================->*/

/*Loader*/
/*<-==========================================->*/
.loader_wrap {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000000;
}

.gooey {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14.2rem;
    height: 4rem;
    margin: -2rem 0 0 -7.1rem;
    filter: contrast(1);
}

    .gooey .dot {
        position: absolute;
        width: 1.6rem;
        height: 1.6rem;
        top: 1.2rem;
        left: 1.5rem;
        filter: blur(1px);
        background: var(--primary);
        border-radius: 50%;
        transform: translateX(0);
        animation: dot 2.8s infinite;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .gooey .dots {
        transform: translateX(0);
        margin-top: 1.2rem;
        margin-left: 3.1rem;
        animation: dots 2.8s infinite;
    }

        .gooey .dots span {
            display: block;
            float: left;
            width: 1.6rem;
            height: 1.6rem;
            margin-left: 1.6rem;
            filter: blur(1px);
            background: var(--primary);
            border-radius: 50%;
            box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        }

.loader__txt {
    color: #ffffff;
    font-size: 2rem;
    display: inline-block;
    width: 14.2rem;
    margin: 1.5rem auto;
    text-align: center;
    letter-spacing: 1px;
}


.loaderHidden {
    display: none;
}

@-moz-keyframes dot {
    50% {
        transform: translateX(9.6rem);
    }
}

@-webkit-keyframes dot {
    50% {
        transform: translateX(9.6rem);
    }
}

@-o-keyframes dot {
    50% {
        transform: translateX(9.6rem);
    }
}

@keyframes dot {
    50% {
        transform: translateX(9.6rem);
    }
}

@-moz-keyframes dots {
    50% {
        transform: translateX(-3.1rem);
    }
}

@-webkit-keyframes dots {
    50% {
        transform: translateX(-3.1rem);
    }
}

@-o-keyframes dots {
    50% {
        transform: translateX(-3.1rem);
    }
}

@keyframes dots {
    50% {
        transform: translateX(-3.1rem);
    }
}
/*Loader*/
/*<-==========================================->*/

/*Media Queries Start*/
/*<-==========================================->*/
@media (min-width: 600px) {



    .Content__bottom {
        height: 22rem;
        margin-top: 0;
        padding: 5px 15px 10px 15px;
    }

    .heading-Info, .heading__normal {
        font-size: var(--fs-400);
    }

        .heading-Info:first-letter {
            text-transform: capitalize;
        }

    .Dischem--Card div, .btn_Dischem--Card {
        padding: .5rem 1.2rem;
    }
}

@media (min-width: 768px) {

    .Content__bottom {
        height: 22rem;
        margin-top: 0;
    }

    .setFixed--Wrap {
        height: 15rem;
    }

    .Container--Parent {
        max-width: 90rem;
    }

    .Dischem--Card {
        min-height: 10rem;
    }
}

@media screen and (min-width: 992px) {
    html {
        font-size: 60%;
    }

    .floating-label {
        width: 15%;
        margin-bottom: 2.5rem;
    }

    .Logo--img {
        height: 5rem;
        margin: 2rem auto 0 auto;
        max-width: 25rem;
        margin-bottom: 2.5rem;
    }

    .Logo--img-2 {
        height: 9rem;
        max-width: 25rem;
        margin-bottom: 2.5rem;
    }

    .heading-Info,
    .heading__normal {
        font-size: var(--fs-550);
        padding: 0.8rem;
        max-width: 70rem;
        margin: 0 auto;
    }
}

@media(min-width:1200px) {
    .Block-Element {
        width: 100%;
        margin: 1rem auto;
    }

    .ContentBox .row p span, .ContentBox .row p label {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .ContentBox {
        flex-direction: column-reverse;
        height: calc(100vh);
    }

        .ContentBox img {
            margin: 2rem auto;
        }

        .ContentBox .ClickHere {
            font-size: 1.6rem;
            font-weight: 700;
            max-width: 30.6rem;
            margin: 2rem auto 2rem 2rem;
        }

        .ContentBox .Done {
            margin-bottom: 0rem;
            text-align: center;
        }

    .ContentBox .ClickHere {
        margin: 2rem auto;
    }
        .ContentBox p{
            text-align:center;
        }

}

@media (max-width: 600px) {
    .Disclaimer_Card::before {
        bottom: -7px;
        left: -7px;
    }

    .Dischem_RadioBoxWrap textarea {
        --textarea-height: 7rem;
        height: var(--textarea-height);
        padding: calc(var(--textarea-height) / 3) 0;
    }

    .Container--Parent {
        max-width: 36rem;
    }
}

@media (max-width: 360px) {

    html {
        font-size: 49%;
    }

    body {
        min-height: auto;
        height: 86vh;
        margin-bottom: 0;
    }

    form {
        min-height: auto;
        height: 86vh;
        margin-bottom: 0;
    }

    .Heading_BackGround {
        margin-right: -4px;
        margin-left: -4px;
    }

    .Dischem--Card div, .btn_Dischem--Card {
        padding: 1rem;
    }

    .Dischem--Card div, .btn_Dischem--Card {
        padding: 1rem;
    }
}

@media (max-width: 297px) {
    html {
        font-size: 45%;
    }

    .Dischem--Card div:last-of-type {
        grid-gap: 0px;
    }

    div.btn_Dischem--Card {
        padding: 0;
    }
}

@media screen and (prefers-color-scheme: light) {
    body {
        background-color: white;
        color: black;
    }
}
/*Media Queries End*/
/*<-==========================================->*/


