/* Faq */

.faq h5 {
    font-weight: 600;
}

.faq {
    margin: 1rem 0;
}

.faq span {
    font-weight: bold;
    color: red;
    line-height: 150%;
}

/* Header Hover Dropdown Email & Phone */

.dropbtn1,
.dropbtn2 {
    margin: .2rem .2rem .2rem .4rem;
}

.dropdown1 span,
.dropdown2 span {
    color: white;
    font-weight: 400;
    margin-left: .3rem;
}

.dropdown1,
.dropdown2 {
    position: relative;
    display: inline-block;
    margin: 0 .5rem;
}

.dropdown-content1,
.dropdown-content2 {
    display: none;
    position: absolute;
    left: 30px;
    background-color: white;
    max-width: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    padding: .8rem 1.5rem;
    transition: 300ms;
}

.dropdown-content1:hover,
.dropdown-content2:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .4);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: 300ms;
}

.dropdown-content1 a,
.dropdown-content2 a {
    color: black;
    font-weight: 400;
    margin-top: 2px;
    text-align: center;
    width: auto;
    text-decoration: none;
    display: block;
}

.dropdown1:hover .dropdown-content1,
.dropdown2:hover .dropdown-content2 {
    display: block;
    transition: 300ms;
}
/* Forgot Password */
#forgot-password {
    display: inline;
    float: right;
}
#forgot-password:hover {
    background-color:var(--darkblue);
    transition: 300ms;
}
/*  User Dropdown */


.user-dropdown span {
    color: white;
    font-weight: 400;
}

.user-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 0;
    background-color: white;
    width: 10rem;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    padding: 1rem;
    transition: 300ms;
    text-align: center;
}

.user-dropdown-content:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .4);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: 300ms;
}

.user-dropdown-content a {
    color: black;
    font-weight: 400;
    margin-top: 2px;
    text-align: center;
    text-decoration: none;
    display: block;
}

.user-dropdown-content a:hover {
    font-weight: bold;
}

.user-dropdown:hover .user-dropdown-content {
    display: block;
    transition: 300ms;
}

#closebtn:hover {
    background-color: transparent;
}

#loginBtn:hover {
    background-color:var(--darkblue);
    transition: 300ms;
}

/* Header Drop Down Login Button */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: .5rem;
    transition: 500ms;
}

header label {
    color: black;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color:var(--darkblue);
    transition: 300ms;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    width: 20rem;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    margin-top: 5px;
    padding: .8rem;
    border-radius: 10px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* .dropdown a:hover {
    background-color: #ddd;
} */

.show {
    display: block;
}

/* Flash Messages. */
.message-crossbutton {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    font-weight: 500;
}

.alert-warning {
    background-color: var(--blue);
    color: white;
}

.messages {
    position: absolute;
    right: 4px;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.alert {
    color: var(--darkblue);
    border: none;
    background-color: white;
    margin: 5px 0px;
    width: fit-content;
    position: relative;
    z-index: 1000;
    transition: 200ms;
    height: 3rem;
    animation: step-end;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: flex !important;
    align-items: center;
    border-right: 10px solid var(--blue);
    box-shadow: 5px 5px 10px 5px rgba(122, 96, 96, 0.2);
}

.alert:hover {
    border-right: 10px solid red;
    box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, .3);
    transition: 200ms;
}

.alert:hover .message-crossbutton {
    color: red;
}

.alert h4 {
    font-size: 1rem;
}

.alert-dismissible .close {
    height: inherit;
}

@media only screen and (max-width:1024px) {
    .alert {
        top: 65px;
    }
}


/* header css */
header {
    background-color: var(--blue);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.webLogo {
    width: 4rem;
    background-color: white;
    border-radius: 5rem;
    margin-right: 1rem;
    box-shadow: 4px 2px 1px #00000040;
}

#headerLinks {
    text-align: right;
}

.emailVerification p{
    color: black;
    font-weight: 700;
    font-size: .8rem;
    
}
.emailVerification i{
    margin-right: .3rem;
}

@media only screen and (max-width:1000px) {
    #headerLinks {
        display: none;
    }
}

.header_console {
    display: grid;
    align-items: center;
    grid-template-columns: auto auto;
    grid-gap: 0 5px;
}

header h1,
#overlay h1 {
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: white;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-shadow: 4px 2px 1px #00000040;
}

/* welcome overlay */
#overlay h1 {
    margin-top: 1rem;
}

#overlay {
    background-color: var(--blue);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fadeIn {
    animation: fadeIn 1s;
}

.fadeOut {
    animation: fadeOut 1.5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.overlayLogo {
    width: 10rem;
    background-color: white;
    border-radius: 5rem;
    margin-right: 1rem;
    box-shadow: 4px 2px 1px #00000040;
}

.hideIt {
    display: none;
    transition: 0.5s;
}

/* section css */
section {
    display: grid;
    height: max-content;
    grid-template-columns: 2fr 3fr 1fr;
    grid-gap: 0.6rem;
}

/* company option section css */
#companyOptionSection {
    grid-column-start: 1;
    grid-column-end: 2;
}

#RegisterLegalEntities,
#RegisterBasicBusiness,
#TAXRegistration,
#IncomeTaxReturnEfiling,
.addressOnDesktop {
    margin-bottom: 1rem;
    border-radius: .3rem;
    overflow: hidden;
    box-shadow: 2px 1px 6px #00000040;
}

#formSection {
    min-height: 700px;
    grid-column-start: 2;
    grid-column-end: 3;
}

#sideImage {
    grid-column-start: 3;
    grid-column-end: 4;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.006506826363357865) 0%, rgba(15, 78, 112, 0.720792540649072) 88%), url("../image/image1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 5px black;
    box-shadow: 2px 1px 6px #00000040;
    border-radius: .3rem;
    height: 90%;
}

.categoryTitle {
    background-color: var(--blue);
    color: white;
    padding: 2% 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categoryTitle .fa-angle-down {
    display: none;
}

.categoryTitle h5 {
    font-weight: 600;
}

.fa-file-alt,
.fa-file-invoice {
    margin-right: 0.5rem;
}

.categoryOption {
    margin: 0;
    background-color: #e8e8e86e;
}

.categoryOption li {
    font-size: 1rem;
    font-weight: 400;
    padding: 2% 5%;
    transition: 0.4s;
    line-height: 1.3;
    cursor: pointer;
}

.categoryOption li:hover {
    background-color: var(--gray);
}

.active {
    border-right: 5px solid var(--blue);
    background-color: var(--bggray);
}

/* form section css */
#formSection {
    box-shadow: 2px 1px 6px #00000040;
    border-radius: .3rem;
    padding: 2% 4%;
    background-color: #e8e8e86e;
    height: max-content;
}

#formSection button {
    float: right;
    background-color: var(--blue);
    transition: 0.4s;
}

#formSection button:hover {
    background-color: var(--darkblue);
}

.colorBlue {
    color: var(--blue);
}

.reqInformation {
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}

.reqTime {
    font-size: .8rem;
    font-weight: 500;
}

.reqTime .fa {
    font-size: .7rem;
}

.inputArea {
    display: flex;
    align-items: baseline;
}

.inputArea label {
    width: -webkit-fill-available;
}

.scrollBox {
    height: 10rem;
    overflow-y: scroll;
}

.gstInfo {
    display: none;
}

/* footer */
.addressOnDesktop {
    background-color: var(--blue);
}

.addressOnDesktop p {
    padding: .5rem 1rem;
    color: white;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.3;
}

.addressOnMobile {
    display: none;
}

#footerLinksDesktop {
    display: flex;
    color: white;
    justify-content: space-around;
    background-color: var(--blue);
    padding: 1rem;
}

#footerLinksDesktop a {
    color: white;
}

#footerLinksDesktop i {
    margin-right: .5rem;
}

#footerLinksDesktop h6 {
    cursor: pointer;
    transition: .3s;
}

#footerLinksDesktop h6:hover {
    color: rgba(255, 255, 255, 0.76);
}
.mailVerificationPopUp{
    position: fixed;
    height: max-content;
    width: 90%;
    margin: auto;
    top: 25%;
    margin: 0 5%;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 2px 1px 6px #00000040;
    padding: 5% 10%;
    display: none;
}
/* terms&condition */
#termsAndCondition,
#fandq {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(21, 183, 255, 0.2586076666994923) 100%), url("https://www.zautomotive.com/wp-content/uploads/2021/02/7ccb010d8fddc4bcd84587ef3c34d100.jpg");
    height: 90vh;
    width: 90%;
    margin: 2% 5%;
    padding: 1rem;
    border-radius: .8rem;
    position: fixed;
    top: .8rem;
    box-shadow: 2px 1px 6px #00000040;
    font-weight: 400;
    display: none;
}

#fandq {
    overflow-y: scroll;
}

#termsAndCondition p {
    font-size: .9rem;
    margin: .8rem 0;
    text-align: justify;
}

#termsAndConditionBtn,
#fandqBtn,
#mailVPBtn {
    cursor: pointer;
}

/* css for tab view start here */
@media only screen and (max-width:768px) {

    /* section */
    section {
        grid-template-columns: 1.5fr 2fr;
        grid-template-rows: auto 80px;
    }

    #companyOptionSection {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;
    }

    #formSection {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2;
    }

    #sideImage {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 3;
    }

    #nameIndicator {
        right: 17.9rem
    }

    #formSection button {
        float: none;
        width: 100%;
    }

    .categoryTitle h5 {
        font-weight: 500;
    }

    .categoryOption li {
        font-size: .8rem;
    }

    #footerLinksDesktop {
        flex-direction: column;
        padding: 1rem 3rem;
    }

    .dropbtn {
        padding: 8px 10px;
        font-size: 10px;
    }
}


/* css for mob view start here */
@media only screen and (max-width:425px) {
    .user-dropdown-content{
        padding: .5rem;
        width: 8rem;
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .user-dropdown-content a {
        font-size: .8rem;
    }
    header {
        justify-content: space-around;
    }

    .eMail,
    .phonenum {
        display: none;
    }

    header h1 {
        font-size: 1.6rem;
    }

    .webLogo {
        width: 2.3rem;
        margin-right: .8rem;
    }

    .overlayLogo {
        width: 7rem;
    }

    #overlay h1 {
        font-size: 2rem;
    }
    .dropdown-content{
        width: 16rem;
    }
    .emailVerification p{
        padding: .8rem 0;
    }
    /* section */
    section {
        grid-template-columns: 1fr;
        grid-template-rows: auto 80px auto;
    }

    #companyOptionSection {
        grid-column-start: 0;
        grid-column-end: 1;
        grid-row-start: 1;
        grid-row-end: 2;
    }

    #formSection {
        grid-column-start: 0;
        grid-column-end: 1;
        grid-row-start: 3;
        grid-row-end: 4;
    }

    #formSection form {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin-top: .9rem;
    }

    #sideImage {
        grid-column-start: 0;
        grid-column-end: 1;
        grid-row-start: 2;
        grid-row-end: 3;
        font-size: 1.6rem;
    }

    .categoryTitle .fa-angle-down {
        display: block;
    }

    #RegisterLegalEntities,
    #RegisterBasicBusiness,
    #TAXRegistration,
    #IncomeTaxReturnEfiling {
        margin-bottom: .2rem;
        border-radius: .2rem;
    }

    .categoryOption {
        display: none;
    }

    #formSection button {
        float: none;
    }

    .addressOnDesktop {
        display: none;
    }

    .addressOnMobile p,
    .addressOnMobile h1 {
        padding: .5rem 0rem;
        color: white;
    }

    .addressOnMobile p {
        font-size: .9rem;
        font-weight: 300;
        line-height: 1.3;
    }

    .addressOnMobile {
        background-color: var(--blue);
        display: block;
        padding: 0.5rem 1rem;
        color: white;
    }

    #footerLinksDesktop {
        display: none;
    }

    .footerLinks {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        line-height: 1.5;
        margin: .4rem 0;
        width: 100%;
        height: 7rem;
        font-size: .7rem;
        font-weight: 400;
    }

    .footerLinks a {
        color: white;
    }

    #mobHr {
        height: .1rem;
        width: 100%;
        margin: 0 auto;
        background-color: white;
    }

    #termsAndCondition,
    #fandq {
        overflow-y: scroll;
        padding: .8rem;
    }

    #termsAndCondition p {
        font-size: .8rem;
    }
}