body {
    font-family: "Open Sans",sans-serif;
}

#app .row {
    margin: auto 10px;
}

.container-blue {
    background-color: rgb(0,103,154);
}

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.wrapper-responsive {
    max-width: 100%;
    overflow: auto;
}

.border-bottom-dotted {
    border-bottom: dotted 2px #A6B2BA;
}

/*Background Colours*/
.bg-stats-blue {
    background-color: rgba(10,100,182,0.1);
}
.bg-stats-yellow {
    background-color: rgba(242,184,0,0.1);
}
.bg-stats-green {
    background-color: rgba(65,162,42,0.1);
}
.bg-stats-red {
    background-color: rgba(197,17,56,0.1);
}

/*Cursors*/
.cursor-pointer {
    cursor: hand;
    cursor: pointer;
}

.noselect, .no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE/Edge */
    user-select: none;           /* non-prefixed version, currently not supported by any browser */
}