/* Poppins Text- Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0% !important;
    margin: 0% !important;
    color: black;
}

body {
    font-family: "Poppins", sans-serif !important;
    font-style: normal;
}

:root {
    --Golden-orange: #E48700;
    --Ligth-orange: #ECBC76;
    --Light-gray: #4C4F52;
}

h2 {
    font-weight: 500;
    font-size: 32px;
}

h4 {
    font-size: 20px !important;
    font-weight: 400 !important;
}

h6 {
    font-weight: 400;
    font-size: 20px;
}

p {
    font-weight: 400;
    font-size: 16px;
}

.label-text {
    color: var(--Light-gray);
    font-weight: 400;
    font-size: 22px;
    margin-left: 5px !important;
}

.primary-golden-btn {
    border-radius: 10px;
    background-color: var(--Golden-orange);
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    padding: 17px !important;
    border: none;
    /* box-shadow: 0px 4px 35px 0px rgba(255, 0, 0, 0.08) !important; */
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.145);
}

.light-gray-txt {
    font-size: 14px;
    font-weight: 400;
    color: #7A7A7A;
}

.loading-screen {
    position: absolute;
    top: 0px;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4C48484A;
}


@media only screen and (max-width:650px) {
    .primary-golden-btn {
        padding: 10px !important;
    }

    .label-text {
        font-weight: 400;
        font-size: 18px;
        /* margin-left:5px !important; */
    }
}