/*
    Created on : 22-04-2015, 11:42:46
    Author     : Nicolai I. Larsen
*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.flex-parent {
  display: box;
  display: flex; }

.flex-column {
  box-orient: vertical;
  flex-direction: column; }

.flex-justify-start {
  justify-content: flex-start; }

.flex-justify-end {
  justify-content: flex-end; }

.flex-justify-center {
  justify-content: center; }

.flex-justify-around {
  justify-content: space-around; }

.flex-justify-between {
  justify-content: space-between; }

.flex-align-stretch {
  align-items: stretch; }

.flex-align-start {
  align-items: flex-start; }

.flex-align-end {
  align-items: flex-end; }

.flex-align-center {
  align-items: center; }

.flex-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-row {
  -webkit-flex-direction: row;
  flex-direction: row; }

body {
  background: #4382b2;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden; }

.red {
  color: red; }

a {
  font-family: 'Open Sans', sans-serif;
  text-decoration: none; }

h2 {
  font-size: 140%;
  color: #000000;
  margin: 25px 0 20px 0; }

h3 {
  font-size: 120%;
  margin: 10px 0; }

h4 {
  font-size: 100%;
  margin: 10px 0 5px 0; }

main {
  margin: 0 4%; }

section {
  flex: 3;
  margin-bottom: 15px; }

section:last-child {
  margin-bottom: 0; }

aside {
  flex: 1;
  margin-left: 20px; }

article {
  margin-right: 15px; }

.box {
  padding: 15px;
  background: #EEEEEE;
  border-radius: 5px; }

.back_btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  text-align: center;
  padding: 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 3px; }

.back_btn:hover {
  cursor: pointer;
  background: #111111; }

.form input, .form select {
  float: left;
  padding: 15px;
  border: solid 2px #D9D9D9;
  font-family: 'Open Sans', sans-serif; }

.form select {
  width: 100%;
  padding: 14px; }

.form button {
  padding: 15px;
  border-radius: 5px;
  border: solid 2px #D9D9D9;
  font-family: 'Open Sans', sans-serif; }

.form input[type=submit] {
  width: 100%;
  border: none;
  background: #1676B3;
  color: #FFFFFF;
  border: solid 2px #1676B3; }

.form input[type=submit]:hover {
  cursor: pointer; }

.form label {
  font-size: 16px;
  margin: 10px 0 4px 0; }

.form > label:first-child {
  margin: 0 0 4px 0; }

.list4:first-child, .list4:last-child, .list3 {
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: solid 1px;
  background: none !important; }

.list4-bold {
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: solid 1px;
  background: none !important; }

.list4:last-child {
  border-top: solid 1px; }

.list4:nth-child(odd), .list2:nth-child(odd) {
  background: #D2D2D2; }

.error-msg, .success-msg {
  position: absolute;
  width: 200px;
  text-align: center;
  padding: 10px;
  background: #ff3030;
  font-size: 12px;
  top: 0;
  border-radius: 0 0 5px 5px;
  color: #FFFFFF;
  left: calc(50% - 120px); }

.success-msg {
  background: #47a347; }

.dr-header {
  font-size: 18px;
  font-weight: bold;
  border-bottom: solid 1px grey;
  padding-bottom: 5px;
  padding-top: 20px; }

.dr-subheader {
  font-size: 12px;
  font-weight: bold;
  padding-left: 15px;
  margin-bottom: 5px;
  margin-top: 15px; }

.dr-text {
  font-size: 12px;
  padding: 10px 0 10px 25px; }

.dr-text:nth-child(odd) {
  background: #D2D2D2; }

.dr-text:nth-child(even) {
  background: #e0e0e0; }

.dr-form input {
  padding: 5px;
  margin: 3px 0;
  border-radius: 5px;
  border: solid 2px #D9D9D9;
  font-family: 'Open Sans', sans-serif; }

.dr-form input[type=text] {
  width: 30px;
  text-align: center; }

.dr-form input[type=submit] {
  border: none;
  background: #1676B3;
  color: #FFFFFF;
  border: solid 2px #1676B3;
  margin-left: 5px;
  margin-right: 5px; }

.dr-form input[type=submit]:hover {
  cursor: pointer; }

.report_amount {
  margin-left: auto;
  padding-right: 15px; }

.filelist {
  padding: 6px;
  text-decoration: none;
  color: #333333; }

.filelist:nth-child(odd) {
  background: #e0e0e0; }

.filelist:hover {
  background: #D2D2D2; }

.filelist li:first-child {
  margin-right: 6px; }

.filelist img {
  width: 38px;
  height: auto; }

.filelist li:last-child {
  font-size: 14px; }

#fileToUpload {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.uploadFile label {
  flex: 3;
  text-align: center;
  border: dashed 2px #e0e0e0;
  border-radius: 5px;
  padding: 10px;
  margin-right: 10px; }

.uploadFile label:hover {
  cursor: pointer; }

.uploadFile input[type=submit] {
  flex: 1; }

.store-worth0 span, .store-worth1 span {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: #ff3030; }

.store-worth1 span {
  background: #47a347; }

.registration-overview ul {
  padding: 8px 6px; }

.registration-overview ul:nth-child(odd) {
  background: #bcbcbc; }

.registration-overview ul:nth-child(even) {
  background: #c4c4c4; }

.registration-overview-edit a {
  background: #ffc700;
  border: none;
  color: #FFF;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  margin-right: 15px; }

.delete_user_btn {
  background: #ea5656;
  border: none;
  color: #FFF;
  padding: 0 10px;
  height: 30px;
  font-size: 14px;
  margin-top: 20px; }

.delete_user_btn:hover {
  cursor: pointer; }

.registration-overview-delete button {
  background: #ea5656;
  border: none;
  color: #FFF;
  padding: 0 10px;
  height: 30px;
  font-size: 14px; }

.registration-overview-delete button:hover {
  cursor: pointer; }

.registration-overview-update button {
  background: #47a347; }

.form-update input[type=text] {
  width: 80px;
  border: none;
  padding-left: 5px; }

.form-update select {
  width: 200px;
  border: none;
  padding-left: 5px; }

.form-update input[type=submit] {
  border: none;
  color: #FFF;
  background: #47a347;
  font-size: 14px; }

.form-update input[type=submit]:hover {
  cursor: pointer; }

.bruger_edit_btn {
  background: #ffc700;
  border: none;
  color: #FFF;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  margin-right: 15px; }

.bruger_edit_btn_ok {
  width: 45px;
  border: none;
  color: #FFF;
  background: #47a347;
  font-size: 14px;
  margin-top: 5px; }

.bruger_edit_btn_ok:hover {
  cursor: pointer; }

.sort-list p.address {
  margin-top: 5px; }

.address-bold {
  font-weight: bold; }

.login-form .success-msg-reset {
  font-size: 16px; }

.districtlist {
  font-size: 12px; }

.box2 {
  margin-bottom: 20px;
  background: #FFF;
  border: solid 1px #e7e7e7; }

.box2-padding {
  padding: 10px; }

.b-header {
  padding: 15px 10px;
  background: #F79F9F;
  background: #333333;
  font-size: 16px;
  font-weight: bold;
  color: #FFF; }

.b-subheader1 {
  padding: 9px 10px;
  background: #474747;
  color: #FFF;
  font-size: 14px;
  font-weight: bold; }

.b-produkt {
  width: 60%; }

.b-text {
  font-size: 12px;
  padding: 7px 10px; }

.b-text:nth-child(even) {
  background: #d0d0d0; }

.b-text:nth-child(odd) {
  background: #c3c3c3; }

.b-text span:first-child {
  font-weight: bold;
  margin-bottom: 2px;
  font-size: 10px; }

.b-text:hover {
  cursor: pointer;
  background: #888888; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0; }
  .overlay.light {
    background: rgba(255, 255, 255, 0.5); }
  .overlay .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default; }
  .overlay:target {
    visibility: visible;
    opacity: 1; }

.popup {
  margin: 75px auto;
  background: #fff;
  border: 1px solid #666;
  width: 450px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  position: relative; }
  .light .popup {
    border-color: #aaa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25); }
  .popup .close {
    padding: 10px;
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #FFF;
    background: #ea5656;
    line-height: 20px; }
    .popup .close:hover {
      opacity: 1; }
  .popup .content {
    max-height: 600px; }
  .popup p {
    margin: 0 0 1em; }
    .popup p:last-child {
      margin: 0; }

.popup_header {
  background: #111111; }

.popup_header h2 {
  color: #FFF;
  font-size: 14px;
  margin: 0;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.popup_text {
  padding: 10px; }

.popup_text_bold {
  font-weight: bold; }

.popup_button {
  padding: 5px;
  font-size: 16px;
  color: #333; }

.store_delete {
  margin-top: 15px; }

.budget_people {
  min-width: 130px;
  padding: 11px;
  font-size: 12px;
  border-bottom: solid 1px #FFF;
  vertical-align: middle; }

.budget_sale {
  padding: 10px;
  font-size: 14px;
  border-bottom: solid 1px #CCC;
  border-right: solid 1px #CCC;
  vertical-align: middle;
  text-align: center; }

.budget_product_header {
  font-size: 12px;
  padding: 10px; }

.budget_report_container {
  flex: 1;
  display: flex;
  overflow: auto; }

.budget_partner {
  border-right: solid 1px #CCC; }

.budget_chain {
  border-right: solid 1px #CCC; }

.budget_product {
  border-bottom: solid 1px #CCC;
  border-right: solid 1px #CCC;
  min-width: 140px;
  max-width: 180px;
  font-size: 14px; }

.budget_total {
  text-align: center;
  font-weight: bold; }

.budget_fixed {
  text-align: center; }

.budget_user_nr {
  color: #47a347;
  font-weight: bold; }

.admin_div_left {
  flex: 3; }

.brugerliste {
  flex: 1; }

.admin_infotext {
  margin: 15px 0 5px 0; }

.today_overview {
  line-height: 26px;
  font-size: 14px; }

.today_overview span {
  background: #333333;
  color: #FFF;
  padding: 0 4px;
  border-radius: 4px; }

.submit_change {
  background: #1676B3;
  color: #FFFFFF;
  border: solid 2px #1676B3;
  font-size: 14px;
  padding: 5px;
  margin-left: 5px; }

.change_store_people {
  margin: 10px 0; }

.change_store_people select {
  padding: 5px;
  border: solid 2px #D9D9D9;
  font-family: 'Open Sans', sans-serif; }

.change_store_people span {
  padding: 0 5px; }

.storelist_userlist-avatar {
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  border: solid 1px #444; }

.storelist_userlist-avatar:hover {
  cursor: pointer; }

.change-user-pass {
  width: 100%;
  text-align: center;
  margin: 15px 0 5px 0; }

#desktop-menu {
  display: block; }
  #desktop-menu li {
    text-align: center; }
    #desktop-menu li a {
      color: #FFFFFF;
      text-decoration: none;
      margin: 0 15px; }

#mobile-menu {
  width: 90%;
  height: auto;
  margin: 5%;
  background: #EEEEEE;
  position: fixed;
  border-radius: 5px; }
  #mobile-menu h2 {
    width: 100%;
    text-align: center;
    color: #CCCCCC;
    font-size: 220%;
    font-weight: bold;
    font-family: 'Lobster', cursive;
    margin: 10px 0; }
  #mobile-menu ul {
    width: 100%; }
    #mobile-menu ul li {
      text-align: center;
      border-top: solid 1px #CCCCCC; }
      #mobile-menu ul li a {
        font-size: 120%;
        display: block;
        width: 90%;
        padding: 5%;
        color: #606060;
        text-decoration: none; }

#menu-toggle {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 120%; }

#menu-toggle:hover {
  cursor: pointer; }

/*@media only screen and (min-width : 1224px) {
  #menu-toggle {
    display: none;
  }

  #desktop-menu {
    display: block;

    li {
      text-align: center;

      a {
        color: #FFFFFF;
        text-decoration: none;
        margin: 0 15px;
      }
    }
  }
}*/
.login-container {
  margin: 0 auto;
  max-width: 360px; }

.login-form {
  float: left;
  width: calc(100% - 40px);
  background: #EEEEEE;
  border-radius: 5px;
  margin-top: 30px;
  padding: 20px; }

.login-form h1, .login-form h2 {
  width: 100%;
  text-align: center;
  color: #CCCCCC;
  font-size: 220%;
  font-weight: bold;
  font-family: 'Lobster', cursive;
  margin-bottom: 6px; }

.login-form h2 {
  font-size: 110%;
  margin: 0;
  margin-bottom: 8px; }

.login-form p {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 80%;
  margin: 10px 0;
  font-family: 'Lora', serif; }

.login-form p a {
  color: #1680B2; }

.login-form input {
  margin-bottom: 8px; }

.login-form input:last-child {
  margin-bottom: 0; }

header {
  width: 96%;
  padding: 25px 2%;
  background: #000000;
  margin-bottom: 20px; }

.tidsoversigt-main {
  flex: 2; }
  .tidsoversigt-main li {
    padding: 8px; }
  .tidsoversigt-main li:nth-child(1) {
    flex: 3; }
  .tidsoversigt-main li:nth-child(2) {
    flex: 2; }
  .tidsoversigt-main li:nth-child(3) {
    flex: 2; }
  .tidsoversigt-main li:nth-child(4) {
    flex: 2; }
  .tidsoversigt-main li:nth-child(5) {
    flex: 2; }
  .tidsoversigt-main li:nth-child(6) {
    flex: 1;
    text-align: right; }

.tidsoversigt-main > ul > li:last-child {
  text-align: right; }

.popup-tid-main-total {
  font-weight: bold; }

.popup-tid-main-total li:last-child span {
  border-bottom: 3px double; }

.popup-headline {
  font-weight: bold;
  font-size: 120%; }

.popup-box li {
  flex: 1; }

.popup-tid-main {
  font-weight: bold; }

.info-time {
  flex: 1; }

.info-graph {
  flex: 2; }

.filter-form {
  margin-top: 0 !important; }

.filter-form input[type=submit] {
  margin: 0;
  margin-top: 10px; }

.filter-form p {
  text-align: left;
  font-weight: bold; }

.filter-form-symbol {
  font-size: 24px; }

.usertime-list {
  flex: 1;
  padding: 6px; }

.usertime-list:nth-child(odd) {
  background: #D2D2D2; }

.usertime-list:nth-child(even) {
  background: #e0e0e0; }

.usertime-list > li {
  margin-bottom: 10px; }

.usertime-list > li > ul:first-child {
  font-weight: bold; }

.usertime-list > li:last-child {
  font-size: 14px;
  padding-left: 22px;
  margin-left: 16px;
  border-left: solid 1px;
  padding: 6px 6px 6px 22px; }

.usertime-list > li > ul > li {
  flex: 1; }

/* Styles for dialog window */
.popup-box {
  background: #FFF;
  padding: 20px 30px;
  text-align: left;
  max-width: 400px;
  margin: 40px auto;
  position: relative; }

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0; }

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0; }

/**
 * Fade-move animation for second dialog
 */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg); }

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0); }

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg); }

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8; }

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0; }

.tidsoversigt-filter {
  flex: 1; }

.ui-datepicker table tbody .ui-datepicker-week-col {
  cursor: pointer;
  font-weight: bold; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:focus,
.mfp-arrow:hover {
  opacity: 1; }

.mfp-arrow:after,
.mfp-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.tidsregistering-main {
  flex: 2; }

.tidsregistering-main button:hover {
  cursor: pointer; }

.select-salesman {
  flex: 1;
  margin-right: 8px; }

.select-date {
  flex: 1;
  margin-right: 8px; }

.select-chain {
  flex: 3; }

.select-butik {
  flex: 3;
  margin-right: 8px; }

.select-partner {
  width: 30%;
  margin-right: 8px; }

.input-partnertime {
  width: 10%;
  margin-right: 8px; }

.input-officetime {
  width: 10%;
  margin-right: 8px; }

.select-saletype {
  width: 35%;
  margin-right: 8px; }

.input-saleamount {
  width: 10%;
  margin-right: 8px; }
.select-butik input[type=submit]:disabled{
    background: #BDBDBD;
}
.input-add {
  width: 75px; }

form .remove_field button, .add_field_button {
  background: #ea5656;
  border: none;
  color: #FFF; }

form .add_field_button {
  background: #39b556;
  border: none; }

.tidsregistering-info {
  flex: 1;
  line-height: 18px;
  font-size: 12px; }

.tidsregistering-info b {
  font-weight: bold; }

.tidsregistering-main input[type=submit] {
  border: none;
  background: #1680B2;
  color: #FFF;
  border: none;
  margin: 0;
  margin-top: 10px; }

.tidsregistering-main input[type=submit]:hover {
  cursor: pointer;
  background: #1373a0; }

.brugerliste ul {
  font-size: 14px; }

.brugerliste li {
  float: left;
  padding: 8px; }

.brugerliste li:nth-child(1) {
  flex: 4; }

.brugerliste li:nth-child(2) {
  flex: 2; }

.brugerliste li:nth-child(3) {
  flex: 2;
  text-align: center; }

.brugerliste li:nth-child(4) {
  flex: 1; }

.brugerliste form input, .brugerliste form select {
  margin: 5px 0; }

.admin-store-list li:even {
  background: #D2D2D2; }

.admin-store-list p {
  flex: 1; }

.admin-store-list p:nth-child(1) {
  flex: 2; }

.listtype1 > li > ul > li {
  flex: 1; }

.listtype1 > li:nth-of-type(odd) {
  background: #D2D2D2; }

.listtype1 > li {
  padding: 10px; }

.listtype1 a, .brugerliste a {
  border-bottom: dashed 1px gray;
  color: #333333; }

.listtype1-header {
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: solid 1px; }

.listtype1-header > li {
  background: none !important; }

.store {
  width: 400px;
  text-align: center; }

.store > div {
  margin-bottom: 12px; }

.store > div > span:first-child {
  font-weight: bold; }

.store > div > span:last-child {
  margin-top: 3px; }

.comments {
  margin-top: 10px;
  text-align: left; }

.comments-text {
  line-height: 20px;
  font-size: 14px; }

.comments-date {
  border-bottom: solid 1px #CCCCCC;
  padding-bottom: 5px;
  margin-bottom: 5px;
  text-align: right;
  font-size: 9px; }

.comments .avatar img {
  width: 38px;
  height: auto;
  border-radius: 20px; }

.comments .user-name {
  margin-left: 5px;
  font-weight: bold;
  font-size: 14px;
  flex: 1; }

.comments .delete button {
  border: none;
  background: none;
  color: #CCCCCC;
  font-weight: bold;
  font-size: 16px; }

.comments .delete button:hover {
  color: red;
  cursor: pointer; }

.comments textarea {
  border: none;
  height: 400px;
  border-radius: 5px;
  padding: 10px; }

.comments input {
  margin-top: 5px; }

.commentlist_datetext {
  font-size: 11px;
  text-align: center;
  margin-top: 5px; }

.store-map img {
  width: 90px;
  height: auto;
  border-radius: 90px; }

.sort-list {
  border-bottom: solid 1px #CCCCCC;
  padding: 10px 0; }

.sort-list p {
  font-size: 12px;
  margin-top: 2px; }

#stores input {
  width: calc(100% - 34px);
  padding: 15px;
  border-radius: 5px;
  border: solid 2px #D9D9D9;
  font-family: 'Open Sans', sans-serif; }

.dignified button, .not-dignified button {
  background: #47a347;
  border: none;
  color: #FFF;
  margin-top: 10px;
  font-size: 12px; }

.not-dignified button {
  background: #ff3030; }

.dignified strong, .not-dignified strong {
  font-weight: bold;
  font-size: 14px; }

.delete-file {
  margin-left: auto; }

.storelist_userlist img {
  width: 26px;
  height: auto;
  border-radius: 4px;
  margin-right: 7px; }

.storelist_editlist label {
  width: 90px; }

#stores .storelist_editlist > input {
  width: 20px; }

/*# sourceMappingURL=core.css.map */
