/*****************************************************************************************

*  File name: index-page-style.css
*  File type: CSS - Cascading Style Sheets.
*  File purpose: Contains all Main Index page style.
*
*
*  TABLE OF CONTENTS
*
*  01. Google Fonts Import
*  02. General Style
*  03. Loading Screen
*  04. Main Top Navigation
*  05. Ad Banner
*  06. Scroll To Top
*  07. Card
*  08. Responsive
*
**** HAPPY CODING :) **/


/* 1.
/* ############### GOOGLE FONTS IMPORT ############### */
/* --------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Hind:300,400,700");

/* 2.
/* ################### GENERAL STYLE ################# */
/* --------------------------------------------------- */
body, html {
    font-family: "Hind";
    font-size: 14px;
    background: #FCFCFC;
}

h1 {
    font-size: 2rem;
}

.container {
    max-width: 1250px;
}

.pt30 {
    padding-top: 30px;
}

.pb30 {
    padding-bottom: 30px;
}

.site-logo {
    height: 30px;
    margin-top: 15px;
}

.flex-center {
    display: flex !important;
    align-items: center !important
}

strong.coin-code {
    display: inline-block;
    padding: 2px 5px;
    margin-left: 45px;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    margin-right: 10px;
}


/* 3.
/* ################## LOADING SCREEN ################## */
/* --------------------------------------------------- */
/** Loading screen ***/
.loading-screen {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(255, 255, 255, .98);
    text-align: center;

}

.loading-screen img {
    height: 50px;
    position: relative;
    top: 50%;
    margin-top: -25px;
}

.loading-screen img.per-loader {
    width: 50px;
    height: 50px;
}


/* 4.
/* ############## MAIN TOP NAVIGATION ################ */
/* --------------------------------------------------- */
.main-top-navigation {
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.08);
    position: fixed;
    background-color: rgba(255, 255, 255, .98);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9997;
    padding: 0px 0px 0px 24px;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 60px;
}

.main-top-nav-margin {
    margin-top: 60px;

    padding-bottom: 30px;
}

/* 5.
/* #################### AD BANNER #################### */
/* --------------------------------------------------- */
.ad-banner {
    width: 728px;
    background: gray url(../images/banner.gif) center no-repeat;
    background-size: cover;
    border-radius: 12px;
    height: 90px;
}

/* 6.
/* ################## SCROLL TO TOP ################## */
/* --------------------------------------------------- */
.scroll-to-top {
    position: relative;
    margin: auto;
    margin-top: 10px;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    background: url(../icons/navigate-up-arrow.svg) no-repeat center;
    background-size: 20px 20px;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    background-position: 10px 50px;
}

.scroll-to-top.go-up {
    background-position: 10px 10px;
    cursor: pointer;
}

/* 7.
/* ####################### CARD ###################### */
/* --------------------------------------------------- */
.card {
    max-width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    border: 0px;
    border-radius: 12px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.08);
}

/* 8.
/* ################### RESPONSIVE #################### */
/* --------------------------------------------------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 770px)
and (orientation : portrait) {
   .ad-banner{
       width: 100%;
   }
}
@media (min-width: 1200px){
    .container {
        width: 1250px;
    }

}
@media (max-width: 480px) {

    .ad-banner {
        max-width: 100%;
    }


    .site-logo {
        width: 140px;
    }

    .container-fluid {
        padding: 0px;
    }

    #currencies-select-box {
        position: absolute;
    }

    .loading-screen img {
        width: 60%;
    }
}
