/* font overwerites */
/* font overrule; don't use globally since it will override icons as well */
body,
h1,
h2,
h3,
h4,
h5,
.ui.button,
.ui.text.container,
.ui.header,
.ui.input input,
.ui.list .list > .item .header,
.ui.list > .item .header,
.ui.steps .step .title,
.ui.menu,
.ui.message .header,
.ui.cards > .card > .content > .header,
.ui.card > .content > .header,
.ui.items > .item > .content > .header,
.ui.statistics .statistic > .label,
.ui.statistic > .label,
.ui.accordion .title:not(.ui),
.ui.modal > .header,
.ui.popup > .header,
.ui.search > .results .result .title,
.ui.search > .results > .message .header,
.ui.category.search > .results .category > .name,
.ui.form input:not([type]),
.ui.form input[type="date"],
.ui.form input[type="datetime-local"],
.ui.form input[type="email"],
.ui.form input[type="number"],
.ui.form input[type="password"],
.ui.form input[type="search"],
.ui.form input[type="tel"],
.ui.form input[type="time"],
.ui.form input[type="text"],
.ui.form input[type="file"],
.ui.form input[type="url"] {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif !important;
}

body {
    background: #eeeeee; /* Old browsers */
    background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}

body > .grid {
      height: 100%;
}

a {
    color: #15984B;
    text-decoration: underline;
}

a:hover {
    color: #16ab39;
    text-decoration: underline;
}

::-webkit-selection {
    background-color: #F8E81C;
    color: rgba(0, 0, 0, .87)
}

::-moz-selection {
    background-color: #F8E81C;
    color: rgba(0, 0, 0, .87)
}

::selection {
    background-color: #F8E81C;
    color: rgba(0, 0, 0, .87)
}

/* RESPONSIVE HELPER CLASSES */
/* Mobile */
@media only screen and (max-width: 767px) {
    body {
        background: #eeeeee;
    }
}
/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        background: #eeeeee;
    }
}
/* Small Monitor */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
/* Large Monitor */
@media only screen and (min-width: 1200px) {
}

h1,
h2,
h3,
h4,
h5,
p {
    line-height: 1.6em !important;
}

.ui.message {
    border-radius: 0 !important;
}

.ui.button {
    border-radius: 0 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24) !important;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1) !important;
}

.ui.button:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22) !important;
}

.ui.green.header {
    color: #15984B !important;
}

.ui.green.button, .ui.green.buttons .button {
    background-color: #15984B;
    color: #FFF;
    text-shadow: none;
    background-image: none
}

.ui.green.button:hover, .ui.green.buttons .button:hover {
    background-color: #16ab39;
    color: #FFF;
    text-shadow: none;
}

.ui.green.button:focus, .ui.green.buttons .button:focus {
    background-color: #0ea432;
    color: #FFF;
    text-shadow: none;
}

.ui.green.button:active, .ui.green.buttons .button:active {
    background-color: #198f35;
    color: #FFF;
    text-shadow: none;
}

.ui.green.active.button, .ui.green.button .active.button:active,
.ui.green.buttons .active.button, .ui.green.buttons .active.button:active {
    background-color: #13ae38;
    color: #FFF;
    text-shadow: none;
}

p.cover {
    padding: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
p.cover:hover {
  /*box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);*/
}
