.rc-trigger-popup {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1050;
}
.rc-trigger-popup-hidden {
  display: none;
}
.rc-trigger-popup-zoom-enter,
.rc-trigger-popup-zoom-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
          animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-trigger-popup-zoom-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
          animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-trigger-popup-zoom-enter.rc-trigger-popup-zoom-enter-active,
.rc-trigger-popup-zoom-appear.rc-trigger-popup-zoom-appear-active {
  -webkit-animation-name: rcTriggerZoomIn;
          animation-name: rcTriggerZoomIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-trigger-popup-zoom-leave.rc-trigger-popup-zoom-leave-active {
  -webkit-animation-name: rcTriggerZoomOut;
          animation-name: rcTriggerZoomOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcTriggerZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes rcTriggerZoomIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@-webkit-keyframes rcTriggerZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}
@keyframes rcTriggerZoomOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
  }
}
.rc-trigger-popup-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #373737;
  background-color: rgba(55, 55, 55, 0.6);
  height: 100%;
  filter: alpha(opacity=50);
  z-index: 1050;
}
.rc-trigger-popup-mask-hidden {
  display: none;
}
.rc-trigger-popup-fade-enter,
.rc-trigger-popup-fade-appear {
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-trigger-popup-fade-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
          animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.rc-trigger-popup-fade-enter.rc-trigger-popup-fade-enter-active,
.rc-trigger-popup-fade-appear.rc-trigger-popup-fade-appear-active {
  -webkit-animation-name: rcTriggerMaskFadeIn;
          animation-name: rcTriggerMaskFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.rc-trigger-popup-fade-leave.rc-trigger-popup-fade-leave-active {
  -webkit-animation-name: rcDialogFadeOut;
          animation-name: rcDialogFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes rcTriggerMaskFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rcTriggerMaskFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rcDialogFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.Alert {
  padding: 11px 14px 14px;

  font-size: 14px;
  border-radius: 4px;
}

.Alert_content {
  margin-left: 26px;
  margin-left: 26px;
  position: relative;
  top: 2px;
}

.Alert_icon.fa {
  float: left;
  position: relative;
  top: 4px;
  width: 26px;
  width: 26px;

  font-size: 16px;
}

.Alert_button.btn-primary {
  height: 20px;
  padding: 0 10px 2px;
  margin-left: 20px;

  font-size: 12px;
}

.AlertEmphasis {
  font-weight: bold;
}

.Alert.error,
.Alert.critical {
  background-color: #fdebe9;
}

.Alert.error a,
.Alert.error .Alert_icon,
.Alert.critical a,
.Alert.critical .Alert_icon {
  color: #cd4936;
}

.Alert.warn {
  background-color: #fff6e6;
}

.Alert.warn a,
.Alert.warn .Alert_icon {
  color: #fea501;
}

.Alert.info {
  background-color: #e4eaf1;
}

.Alert.info a,
.Alert.info .Alert_icon {
  color: #7599c9;
}

.Alert.ok {
  background-color: #f1f5e4;
}

.Alert.ok a,
.Alert.ok .Alert_icon {
  color: #95c11f;
}

.ConnectionStatus {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin-right: 5px;
  border-radius: 50%;
}

.ConnectionStatus.connected {
  background-color: #95c11f;
}

.ConnectionStatus.connecting {
  background-color: #fea501;
}

.ConnectionStatus.disconnected {
  background-color: #999999;
}

.ConnectionStatus.failed {
  background-color: #cd4936;
}

.ModalButton.btn {
  padding-left: 30px;
  padding-right: 30px;
}

.Modal_form {
  width: 727px;
  top: 0;
  margin-top: 30px;
}

.Modal .modal {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  width: inherit;
  background: inherit;
}

.Modal_close-button {
  position: relative;
  z-index: 1;
  padding: 30px;

  outline: none;
  background: none;
  border: none;

  font-size: 16px;
  color: #cfcfcf;
}

.Modal_icon-close {
  font-size: 22px;
}

.Modal_icon-close:before {
  content: '\00d7';
}

.Modal_modal-backdrop.in {
  opacity: 0.7;
}

.Modal_modal-dialog {
  width: 727px;
  margin: 30px auto;
  position: relative;
}

.Modal_modal-content {
  border-radius: 6px;
  background: white;
}

.Modal_modal-header {
  padding-top: 41px;
  padding-bottom: 8px;
  padding-left: 48px;
  padding-right: 48px;

  border: none;
}

.Modal_modal-header h1 {
  margin-bottom: 0;

  font-size: 26px;
  font-weight: bold;
  color: #95c11f;
}

.Modal_modal-body {
  padding: 0 48px;
  line-height: 200%;
}

.Modal_modal-footer {
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 48px;
  padding-right: 48px;

  border: none;
}

.Modal .control-label {
  font-weight: normal;
}

.Modal .form-control {
  padding-left: 14px;
  height: 40px;

  font-size: 16px;
}

.Modal .form-control-feedback {
  line-height: 40px;
}

.Popup {
  padding: 13px;
  padding-top: 9px;
  pointer-events: none;

  background-color: rgba(43, 46, 54, 0.75);

  background-color: rgba(43, 46, 54, 0.75);
  border-radius: 4px;
  line-height: 1.1;
}

.Popup.s {
  width: 174px;
}

.Popup.m {
  width: 194px;
}

.Popup.l {
  width: 231px;
}

.Popup.arrow-at-top:before {
  position: absolute;
  top: 0;
  left: 50%;
  content: ' ';

  margin-top: -18px;
  margin-left: -9px;
  border: 9px solid transparent;
  border-bottom-color: rgba(43, 46, 54, 0.75);
  border-bottom-color: rgba(43, 46, 54, 0.75);
}

.Popup.error.arrow-at-top:before {
  border-bottom-color: #cd4936;
}

.Popup.error.arrow-at-top:after {
  position: absolute;
  top: 0;
  left: 50%;
  content: ' ';

  margin-top: -17px;
  margin-left: -9px;
  border: 9px solid transparent;
  border-bottom-color: #fdebe9;
}

.Popup.arrow-at-bottom:before {
  position: absolute;
  top: 100%;
  left: 50%;
  content: ' ';

  margin-left: -9px;
  border: 9px solid transparent;
  border-top-color: rgba(43, 46, 54, 0.75);
  border-top-color: rgba(43, 46, 54, 0.75);
}

.Popup.error.arrow-at-bottom:before {
  border-top-color: #cd4936;
}

.Popup.error.arrow-at-bottom:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: ' ';

  margin-top: -1px;
  margin-left: -9px;
  border: 9px solid transparent;
  border-top-color: #fdebe9;
}

.Popup_text {
  line-height: 1.4em;
  font-size: 12px;
  color: white;
}

.Popup.error {
  border: 1px solid #cd4936;
  background-color: #fdebe9;
}

.Popup.error .Popup_text {
  font-weight: bold;
  opacity: 1;
  color: #cd4936;
}

.InfoTooltip_icon.fa {
  padding-left: 7px;

  color: #cccccc;
  font-size: 13px;
}

.InputField_input-wrapper {
  position: relative;
}

.InputField_input-wrapper .control-group {
  width: 100%;
}

.ClsLoginForm_info-box {
  margin-bottom: 20px;
}

.ClsLoginForm_error-alert {
  margin-top: 10px;
  margin-bottom: 20px;
}

.ImportFormFileTab_form {
  margin-bottom: 18px;
}

.ImportFormFileTab_form_input,
.ImportFormFileTab_form_error {
  margin-bottom: 20px;
}

.ImportFormFileTab_form_input_file-name {
  width: 86%;
  height: 22px;
}

.btn.btn-file.ImportFormFileTab_form_input_browse-button {
  margin-left: 10px;
}

.ImportFormFileTab_form_error-icon {
  margin-right: 10px;
}

.ImportFormFileTab_form_import-button.btn {
  width: 87px;
}

.ImportForm {
  top: 30px;
  margin: 0 0 0 -400px;
}

.ImportForm,
.ImportForm_success-modal {
  width: 800px;
  padding-bottom: 50px;
}

.ImportForm h3 {
  margin: 0;
}

.ImportForm_header {
  padding: 41px 48px 20px 48px;
}

.ImportForm_header .close {
  margin: -25px -25px 0 0
}

.ImportForm_body {
  padding: 0 48px 0 48px;
}

.ImportForm_nav-bar {
  margin-bottom: 24px;
  margin-left: -48px;
  margin-right: -48px;
  padding-left: 48px;
  padding-right: 48px;

  border-bottom: 1px solid #dddddd;
}

.ImportForm_nav-bar_button {
  margin-right: 30px;
  padding: 2px 0 9px 0;

  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  outline: none;
}

.ImportForm_nav-bar_button.active {
  border-bottom: 2px solid #95c11f;
  color: #95c11f;
}

.ImportForm_table {
  overflow-y: auto;
  max-height: 400px;
  margin-bottom: 20px;
}

.ImportForm_name-form {
  display: inline-block;
  margin-right: 20px;
}

.ImportForm_login-info-box {
  margin-bottom: 20px;
}

.ImportForm_warning {
  margin-bottom: 20px;
}

.ImportForm_warning-icon {
  line-height: 200%;
  float: left;
}

.ImportForm_import-button.btn {
  width: 87px;
}

.ImportForm_close-button.btn {
  width: 67px;
  margin-top: 20px;
}

.ValidationTooltip {
  position: absolute;
  z-index: 1
}

.WarningTooltip_icon,
.WarningTooltip_icon:hover,
.WarningTooltip_icon:focus {
  font-size: 16px;
  color: #fea501;
}

.ImportFormTable.table {
  border: 1px solid #dddddd;
  margin-bottom: 0;
}

.ImportFormTable.table > thead > tr > th {
  background: #f8f8f8;
}

.ImportFormTable.table > thead > tr > th:first-child,
.ImportFormTable.table > thead > tr > td:first-child,
.ImportFormTable.table > tbody > tr > td:first-child {
  padding-left: 17px;
}

.ImportFormTable.table > thead > tr > th:last-child,
.ImportFormTable.table > tbody > tr > td:last-child {
  padding-right: 17px;
}

.ImportFormTable_organization {
  font-weight: bold;
}

.ImportFormTable_status {
  display: inline-block;
  padding-top: 7px;
}

.ImportFormTable_connection-button {
  text-decoration: underline;
}

.ImportFormTable_bad-import {
  padding: 32px;
}

.ImportFormTable_bad-import-image {
  float: left;
  height: 160px;
  width: 180px;
  margin-left: 90px;
  background-image: url(../images/4a96f7fd699a7e95574053ceb938234e-4a96f7fd699a7e95574053ceb938234e.svg);
  background-size: 180px 160px;
  background-repeat: no-repeat;
}

.ImportFormTable_bad-import-text {
  vertical-align: top;
  margin-top: 50px;
  overflow: hidden;
}

.ImportFormTable_product-name {
  width: 89px;
}

.ImportFormTable_import-license-column {
  width: 49px;
}

.ImportFormTable_column {
  width: 65px;
}

.ImportFormTable_seats-left-column {
  width: 86px;
}

.ImportFormTable_date-column {
  width: 85px;
}

.ImportFormTable_same-order td {
  border-top: 0;
  padding-top: 0;
}

.table td.ImportFormTable_cell {
  vertical-align: middle;
}

.ImportFormTable_import-license_label {
  text-align: center;
  margin: 0;
  padding: 0 6px 6px 6px;
}

input[type='number'].ImportFormTable_exported-seats {
  width: 60px;
  margin-bottom: 0;
}

.ImportFormTable_total-seats {
  color: #999999;
  margin-right: 3px;
}

.ConfigureClsConnectionTab_modal-title {
  font-size: 24px;
  line-height: 40px;
  font-weight: bold;
}

.ConfigureClsConnectionTab_row > * {
  display: inline-block;
}

.ConfigureClsConnectionTab_row-status {
  font-weight: bold;
}

.ConfigureClsConnectionTab_row-name {
  width: 120px;
  margin-right: 10px;
  padding-bottom: 10px;
}

.ConfigureClsConnectionTab_alert {
  margin-left: 30px;
  margin-bottom: 20px;
}

.ConfigureClsConnectionTab_disconnect-btn {
  text-decoration: underline;
  font-size: 12px;
  color: #999999;
}

.Header_latest-version {
  color: #95c11f;
  font-weight: bold;
  float: left;
}

.Header_seat-usage {
  float: right;
}

.Header_seat-usage_name {
  color: white;
  margin-left: 10px;
}

.Header_seat-usage_utilization {
  margin-left: 5px;
}

.DeleteLicense_table.table {
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  border-collapse: separate;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 0;
}

.DeleteLicense_table.table > thead > tr > th {
  background: #f8f8f8;
}

.Bubble {
  display: inline-block;
  padding: 3px 12px;
  margin-right: 10px;
  margin-bottom: 10px;

  border-radius: 20px;
  background-color: #e0e0e0;
}

.Bubble:last-child {
  margin-right: 0;
}

.Bubble_warning-icon {
  margin-right: 7px;
}

.Bubble_remove-button {
  position: relative;
  bottom: 1px;
  padding: 0;
  margin-left: 7px;

  outline: none;
  background: none;
  border: none;

  color: #bcbcbc;
}

.Bubble_remove-button > .Modal_icon-close {
  font-size: 18px;
}

.SeatUserInviteForm_light-title {
  font-weight: normal;
}

.SeatUserInviteForm_text {
  font-size: 18px;
  line-height: 1.5;
}

.SeatUserInviteForm_input,
.SeatUserInviteForm_domain-warning,
.SeatUserInviteForm_sending-failure {
  margin-top: 26px;
}

.SeatUserInviteForm_email-field.control-group {
  display: inline-block;
  margin-right: 10px;
  width: 540px;
}

.SeatUserInviteForm_email-add-button.btn {
  width: 78px;
  height: 40px;
  padding: 0;
}

.SeatUserInviteForm_email-bubbles {
  margin-bottom: -10px;
}

.DeleteModal_panel {
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.DeleteModal_panel_body {
  padding: 15px;
}

.DeleteModal_rebel-user-list.pre-scrollable {
  max-height: 140px;
}

.Toggle {
  background-color: #dddddd;
  border-radius: 3px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
  padding: 3px;
  padding: 3px;
  width: 60px;
  width: 60px;

  -webkit-transition-duration: 0.2s;

          transition-duration: 0.2s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.Toggle.active {
  background-color: #95c11f;
}

.Toggle_thumb {
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px rgba(0, 0, 0, 0.1);
  color: #999999;
  font-size: 10px;
  line-height: 12px;
  margin: 0;
  padding: 2px 0;
  text-align: center;
  width: 27px;
  width: 27px;

  -webkit-transition-duration: 0.2s;

          transition-duration: 0.2s;
  -webkit-transition-property: margin;
  transition-property: margin;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.Toggle_thumb::-moz-selection {
  background: transparent;
}

.Toggle_thumb::selection {
  background: transparent;
}

.Toggle.active .Toggle_thumb {
  margin: 0 0 0 27px;
  margin: 0 0 0 27px;
}

.WhitelistedDomainTab_header {
  margin-bottom: 20px;
}

.WhitelistedDomainTab_header_title,
.WhitelistedDomainTab_header_toggle {
  display: inline-block;
}

.WhitelistedDomainTab_header_title {
  margin-top: 2px;
  vertical-align: top;
}

.WhitelistedDomainTab_header_toggle {
  margin-left: 20px;
}

.WhitelistedDomainTab_header_add-domain {
  float: right;
}

.WhitelistedDomainTab_table_domain {
  width: 40%;
}

.WhitelistedDomainTab_table_added {
  width: 55%;
}

.WhitelistedDomainTab_table_actions {
  width: 5%;
}

.WhitelistedDomainTab_table_empty {
  margin: 42px 0 42px 25%;
}

.WhitelistedDomainTab_table_empty_image {
  height: 157px;
  width: 196px;
  background-image: url(../images/8c86da0d004d99dec9ebd10eef0df970-8c86da0d004d99dec9ebd10eef0df970.svg);
  background-repeat: no-repeat;
}

.WhitelistedDomainTab_table_empty_text {
  width: 300px;
  margin-left: 20px;
}

.WhitelistedDomainTab_table_empty_image,
.WhitelistedDomainTab_table_empty_text {
  display: inline-block;
  vertical-align: middle;
}

.WhitelistedDomainTab_table_added_created-by {
  color: #999999;
}

.WhitelistedDomainTab_form_text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 26px;
}

