/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.impersonatePopupContainer th,
.impersonatePopupContainer td {
  font-size: 13px;
}
.impersonatePopupContainer td[data-impersonate-label="E-mail"] {
  word-break: break-all;
  line-height: 18px;
  max-width: 220px;
}
.impersonatePopupContainer .bttn.pincode {
  margin: 0 0 0 10px;
}
.impersonatePopupContainer .row.halfWidth label {
  display: block;
  font-size: inherit;
  font-weight: bold;
}
.impersonatePopupContainer .row.halfWidth select,
.impersonatePopupContainer .row.halfWidth .bttn {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .impersonatePopupContainer .row.halfWidth {
    float: left;
    width: 47.5%;
  }
}
@media only screen and (max-width: 767px) {
  table[data-impersonate-role="customerTable"],
  table[data-impersonate-role="customerTable"] thead,
  table[data-impersonate-role="customerTable"] tbody,
  table[data-impersonate-role="customerTable"] th,
  table[data-impersonate-role="customerTable"] td,
  table[data-impersonate-role="customerTable"] tr {
    display: block;
  }
  table[data-impersonate-role="customerTable"] thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table[data-impersonate-role="customerTable"] tr {
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
    margin-bottom: 15px;
  }
  table[data-impersonate-role="customerTable"] tr td {
    border: none;
    border-bottom: 1px solid #dedede;
    position: relative;
    padding-left: 50%;
    min-height: 40px;
  }
  table[data-impersonate-role="customerTable"] tr td:before {
    content: attr(data-impersonate-label);
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 700;
  }
}
.customerTableWrapper {
  position: relative;
  min-height: 250px;
}
#customerEmailDialog {
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}
#customerEmailDialog .error {
  color: #e34144;
}
#customerEmailDialog.customerEmailDialog__active {
  display: block;
  animation: slide-up 0.4s ease-out;
}
#close {
  position: absolute;
  top: 0.1em;
  right: 0.2em;
  padding: 0.3em;
  line-height: 0.6;
  background-color: transparent;
  border: 0;
  font-size: 2em;
  padding: 0.4em .5em 0.2em;
  font-family: Glober, Helvetica, sans-serif;
  min-width: 0;
}
.modal__header,
.modal__body,
.modal__footer {
  padding: 1em;
  margin: 0;
}
.modal__header .row,
.modal__body .row,
.modal__footer .row {
  margin: 0;
}
.modal__header {
  margin: 0;
  padding-bottom: 0.6em;
  background-color: #0175bb;
  border-bottom: 1px solid #dedede;
  color: white;
}
.modal__header h1,
.modal__header h2,
.modal__header h3 {
  margin: 0;
}
.modal__footer {
  border-top: 1px solid #0175bb;
  display: flex;
  justify-content: space-between;
}
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate(0, 15px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
