/* -------------------------------- 

Primary style

-------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;

    border: none;
    text-decoration: none;
    outline: none;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /* -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;      
    user-select: none; */
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    color: #000;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

html, body {
    /* prevent horizontal scrolling */
    /*  overflow-x: hidden;

    overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
}

a {
    color:inherit;
    outline:none;
    text-decoration:none;
    cursor:pointer;
}

a img {outline : none;}
ul {list-style: none;}
select {outline:none;}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}

input[type=text] {   
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;    
}

.no-select{
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;      
    user-select: none;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.center-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}
.center-wrapper .center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.wrapper{
    position: relative;
    float: left;
    width: 100%;
}

.wrapper .container{
    position: relative;
    /* max-width: 1440px; */
    width: 1340px;
    height: 100%;
    margin: 0 auto;
}

.main-mobile,
.main{
    display: none;
}

.hide{
    display: none;
}

@media (max-width: 900px){ 
    .main-mobile{
        display: block;
    }

    .hide-on-mobile{
        display: none !important;
    }
}

@media (min-width: 901px){ 
    .main{
        display: block;
    }

    .hide-on-desktop{
        display: none !important;
    }
}