@media screen {
    
}
body{
    background-color: black;
    width: 100%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    height: 830px;
}


.mainContainer{
    background-color: black;
    width: 100%;
}

.progressBarField{
    background-color: yellow;
    width: 75%;
    font-size: 30px;
    padding-top: 40px;
    padding-bottom: 70px;
    margin-top: 15%;
    border-radius: 30px;
    animation: glow 1.5s infinite,slideUp 2.5s ease-out;
    display: none;
}
#progress{
    width: 50%;
    border-width: 10px;
    height: 27px;
    margin-top: 25px;
}
.windowsApps{
    height: 800px;
    overflow-y:scroll;
    width: 100%;
    background-color: yellow;
    margin-top: 30px;
    animation: glow 1.5s infinite,slideUp 2.5s ease-out;
}
.androidApps{
    height: 800px;
    overflow-y:scroll;
    width: 100%;
    background-color: yellow;
    margin-top: 30px;
}

/**START OF QUICK CONVERTOR SETUP**/
.QuickConvertor{
    background-color: pink;
    width: 200px;
    padding-top: 10px;
    margin-top: 20px;
    padding-bottom: 20px;
    float: left;
    margin-left: 20px;
    border-radius: 30px;
    border-style: dashed;
}
.QuickConvertor_icon{
    width: 150px;
    height: 100px;
}
.QuickConvertor_view{
    border-radius: 30px;
    background-color: black;
    color: red;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    cursor: pointer;
}
.QuickConvertor_download{
    border-radius: 30px;
    background-color: yellow;
    color: blue;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    margin-top: 10px;
    cursor: pointer;
}
.QuickConvertor_view:hover:active{
    background-color: red;
}
.QuickConvertor_download:hover:active{
    background-color: red;
}
/**END OF QUICK CONVERTOR SETUP**/

/**START OF SECOND APP SETUP**/
.secondApp{
    background-color: pink;
    width: 200px;
    padding-top: 10px;
    margin-top: 20px;
    padding-bottom: 20px;
    float: left;
    margin-left: 20px;
    border-radius: 30px;
    border-style: dashed;
    display: none;
}
.QuickConvertor_icon{
    width: 150px;
    height: 100px;
}
.QuickConvertor_view{
    border-radius: 30px;
    background-color: black;
    color: red;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    cursor: pointer;
}
.QuickConvertor_download{
    border-radius: 30px;
    background-color: yellow;
    color: blue;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    margin-top: 10px;
    cursor: pointer;
}
.QuickConvertor_view:hover:active{
    background-color: red;
}
.QuickConvertor_download:hover:active{
    background-color: red;
}
/***END OF SECOND APP SETUP***/

/***START OF THIRD APP SETUP***/
.thirdApp{
    background-color: pink;
    width: 200px;
    padding-top: 10px;
    margin-top: 20px;
    padding-bottom: 20px;
    float: left;
    margin-left: 20px;
    border-radius: 30px;
    border-style: dashed;
    display: none;
}
.QuickConvertor_icon{
    width: 150px;
    height: 100px;
}
.QuickConvertor_view{
    border-radius: 30px;
    background-color: black;
    color: red;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    cursor: pointer;
}
.QuickConvertor_download{
    border-radius: 30px;
    background-color: yellow;
    color: blue;
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 80%;
    margin-top: 10px;
    cursor: pointer;
}
.QuickConvertor_view:hover:active{
    background-color: red;
}
.QuickConvertor_download:hover:active{
    background-color: red;
}
/***END OF THIRD CONVERTOR SETUP***/

/**QUICK CONVERTOR DIALOG DETAILS**/
.QuickConvertor_details{
    width: 70%;
    background-color: white;
    height: 500px;
    margin-top: 30px;
    overflow-y: scroll;
    animation: glow 1.5s infinite,slideUp 2.5s ease-out;
}
.QuickConvertor_closeIcon{
    border-radius: 30px;
    background-color: red;
    font-size: 25px;
    cursor:pointer;
    float:right;
    margin-left:30px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.loaderBody{
    border-radius: 50%;
    width:25%;
    height:25%;
    padding-bottom: 2px;
    border-width:2px;
}
.loader_made{
    height: 99%;
    width: 99%;
}

@keyframes glow {
    0% {box-shadow: 0 0 20px #dfef26;}
    5% {box-shadow: 0 0 30px #3103ed;}
    10% {box-shadow: 0 0 20px #f80101;}
    15% {box-shadow: 0 0 40px #014e10;}
    50% {box-shadow: 0 0 100px #38bdf8;}
    60% {box-shadow: 0 0 50px #f0a605;}
    100% {box-shadow: 0 0 20px #c5f838;}
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(150%);
    }
    to {
        opacity: 1;
        transform: translate(10%);
    }
}

