*  {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Red Hat Display", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

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

 ::selection  {
    color: #4eb04e;
    background: rgba(78, 176, 78, 0.1);
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
 textarea:-webkit-autofill:hover  {
    -webkit-box-shadow: 0 0 0 56px #fff inset !important;
    box-shadow: 0 0 0 56px #fff inset !important;
    z-index: 0 !important;
    border-radius: 8px;
}

 html  {
    font-size: 16px;
}


 main  {
    width: 100%;
    height: 100vh;
}

 .mainContainer  {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 44px 0;
    background: url(../../images/background-shapes.svg) no-repeat center center;
    background-size: cover;
}

 .downloadTextContainer  {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

 .downloadContainer  {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
}

 .downloadTextContainer h1  {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    text-align: center;
    color: #222;
}

 .downloadDesc  {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #777;
}

 .downloadOptionContainer  {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 23px;
}

 .packageDetails  {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #666;
}

 .packageDetails strong  {
    color: #222;
}

 .downloadOptions  {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

 .downloadOpt  {
    width: 100%;
    padding-bottom: 19px;
    position: relative;
}

 .downloadOpt::after  {
    content: '';
    position: absolute;
    width: 230px;
    height: 1px;
    bottom: 0;
    left: 0;
    opacity: 0.16;

    background-color: #000;
}

 .downloadOption  {
    width: 270px;
    height: 290px;
    padding: 21px 20px 20px;
    border-radius: 12px;
    border: solid 1px #e3e3e3;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

 .downloadOption.selectedOpt  {
    background-image: linear-gradient(136deg, #387a9d 5%, #4ca94c 97%);
    box-shadow: 0px 14px 14px rgba(0, 0, 0, 0.1);
}

 .platIcon  {
    width: 60px;
    height: 60px;
    background: #4eb04e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

 .win .platIcon  {
    background: #4eb04e url(../../images/windows-white.svg) no-repeat center center;
}


 .win.selectedOpt .platIcon  {
    background: #ffff url(../../images/windows-blue.svg) no-repeat center center;
}


 .mac .platIcon  {
    background: #4eb04e url(../../images/mac-white.svg) no-repeat center center;
}

 .mac.selectedOpt .platIcon  {
    background: #fff url(../../images/mac-blue.svg) no-repeat center center;
}

 .lin .platIcon  {
    background: #4eb04e url(../../images/linux-white.svg) no-repeat center center;
}

 .lin.selectedOpt .platIcon  {
    background: #ffff url(../../images/linux-blue.svg) no-repeat center center;
}


 .downloadOpt h3  {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.32px;
    text-align: left;
    color: #222;
    margin-top: 28px;
}

 .selectedOpt .downloadOpt h3  {
    color: #fff;
}

 .downloadBtnSet  {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

 .downloadBtn  {
    width: auto;
    height: 41px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 0 20px;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: center;
    color: #fff;
    background: #388438;
    border-radius: 10px;
    gap: 16px;
    cursor: pointer;
    max-width: 132px;
    margin-top: 16px;
}

 .selectedOpt .downloadBtn  {
    background: #fff;
    color: #388438;
}

 .mac .downloadBtn  {
    max-width: 106px;
}

 .lin .downloadBtn  {
    max-width: 109px;
    padding: 0 20px;
    width: 100%;
    justify-content: center;
}

 .moreOptions  {
    height: 100%;
    border-left: 1px solid #296029;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    min-width: 28.5px;
    position: relative;

}

 .selectedOpt .moreOptions  {
    border-left: 1px solid #efefefef;
}

 .downArrow  {
    width: 9px;
    height: 5px;
    background: url(../../images/downArrow.svg) no-repeat center center;
    background-size: contain;
    transition: 0.3s;
}

 .moreOptions.active .downArrow  {
    transform: rotate(180deg);
    background-color: rgba(0, 0, 0, 0.1);
}

 .selectedOpt .downArrow  {
    background: url(../../images/downArrow-green.svg) no-repeat center center;
}

 .downloadBtn:hover .moreOptions  {
    background-color: #296029;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.moreOptions.active,
 .selectedOpt .downloadBtn:hover .moreOptions  {
    background-color: rgba(0, 0, 0, 0.1);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

 .moreOptionDownload  {
    position: relative;
}

 .moreOptionContainer  {
    position: absolute;
    width: 230px;
    height: 84px;
    border-radius: 12px;
    box-shadow: -4px 4px 12px 0 rgba(0, 0, 0, 0.08);
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #efefef;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    margin-top: 2px;
    display: none;
}

 .moreOptionContainer.active  {
    display: flex;
}

 .optionalNote  {
    padding-top: 19.5px;
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    opacity: 0.7;
    color: #222;
}

 .selectedOpt .optionalNote  {
    color: #fff;
}

 .copyNote  {
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: 0.3px;
    text-align: left;
    color: #666;
}

 .moreOpt  {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.1px;
    text-align: left;
    color: #222;
}

 .moreOpt:not(:last-child)  {
    border-bottom: 1px solid #efefef;
}

 .moreOpt:hover  {
    background: #efefef;
}



/* Error message style */


 .errorContainer  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: none;
}

 .errorUpdate  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

 .errorUpdate img  {
    width: 230px;
    height: 228px;
    object-fit: contain;
}

 .errorTextMsg  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 21px;
}

 .errorTextMsg h3  {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.4px;
    text-align: center;
    color: #222;
}

 .errorTextMsg p  {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #888;
    margin-top: 7px;
    padding: 0 10%;
}

 .errorTextMsg time  {
    font-weight: 500;
    color: #222;
}

 .logoSection img  {
    width: 101px;
    padding-bottom: 20px;
    object-fit: contain;
}

@media only screen and (max-width: 576px)  {
     body  {
        background: url(../../images/mobile-background.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

     .errorTextMsg h3  {
        font-size: 22px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: 0.4px;
        text-align: center;
        color: #222;
    }

     .errorTextMsg p  {
        font-size: 13px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: center;
        color: #888;
        margin-top: 7px;
        padding: 0 10%;
    }
}


/* Compatible style */

 .compatibleBrowsers  {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 37px 0 0 0;
    gap: 18px;
}

 .compatibleBrowsers h6  {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    font-family: "Red Hat Display", sans-serif;
    margin: 0;
    letter-spacing: normal;
    text-align: center;
    color: #222;
}

 .compatibleBrowsers img  {
    width: auto;
    height: auto;
}