@import "https://fonts.googleapis.com/icon?family=Material+Icons";
@import "//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css";
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
html, body {
    height: 100%;
    min-height: 400px;
    min-width: 700px;
    background: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Roboto", Arial, sans-serif;
    color: #151515;
}

html {
    width:100vw;
    overflow-x:hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:not([href]){
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

a {
    color: #1564c2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.button {
    display: inline-block;
    padding: 10px;
    margin: 5px;
    background-color: #ffcc53;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    color: black;
    text-align: center;
}
a.button:hover {
    text-decoration: none;
    background-color: #ffbd20;
    transition: background-color 300ms ease-out;
}

a.button.green {
    color: white;
    background-color: #2ca637;
}
a.button.green:hover {
    background-color: #217e2a;
}

a.button.disable {
    color: #BDBDBD;
    background-color:#F2F2F2 ;
    cursor:default;
}

a.button.disable:hover {
    background-color: #F2F2F2;
}

input {
    border: solid 1px #D0D0D0;
    width: 100%;
    height: 30px;
    font-size: 14px;
    padding: 5px;
}