/*
Bug_tracker
*/

@import url("https://fonts.googleapis.com/css?family=Dosis:400,600,800");
#bug_tracker_container {
  font-family: "Dosis", sans-serif !important;
  position: fixed;
  border: 0px;
  bottom: 0px;
  right: 15px;
  z-index: 2000;
}

#bug_tracker_container #bug_tracker_relative {
  position: relative;
}

#bug_tracker_container #bug_tracker_button {
  position: absolute;
  bottom: 0px;
  background-color: #00b5e3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 15px 35px;
  outline: none;
  border-radius: 10px 10px 0px 0px;
  -webkit-box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  right: 0;
  transition: all 200ms ease-out;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -ms-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  width: 175px;
  font-size: 14px;
}

#bug_tracker_container #bug_tracker_button p {
  margin-bottom: 0px;
}

#bug_tracker_container #bug_tracker_button.in {
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

#bug_tracker_container #bug_tracker_button:hover {
  background-color: #0093b8;
}

#bug_tracker_form {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  background: #fafbfb;
  font-size: 14px !important;
  width: 358px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 30px 0px rgba(0, 0, 0, 0.14);
  position: absolute;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  -webkit-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  bottom: 0;
  right: 0;
}

#bug_tracker_form.in {
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

#bug_tracker_form #bug_tracker_form_header {
  background-color: #00b5e3 !important;
  font-weight: 700;
  border-radius: 5px 5px 0 0;
  height: 40px;
  max-height: 40px;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

#bug_tracker_form #bug_tracker_form_header .header-text {
  color: #fff;
  padding: 10px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center;
}

#bug_tracker_form #bug_tracker_form_header .header-close-icon-container {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
}

#bug_tracker_form #bug_tracker_form_header .close-icon {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
}

#bug_tracker_form #bug_tracker_form_header .header-close-icon-container:hover .close-icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#bug_tracker_form #bug_tracker_form_header .close-icon>span.close-icon-1 {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#bug_tracker_form #bug_tracker_form_header .close-icon>span.close-icon-2 {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#bug_tracker_form #bug_tracker_form_content {
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  padding: 16px 16px 0px;
  margin: 0;
  overflow-y: auto;
  -ms-overflow-style: scrollbar;
  max-height: 460px;
  height: 460px;
}

#bug_tracker_form #bug_tracker_form_content label {
  font-family: "Dosis", sans-serif;
}

#bug_tracker_form #bug_tracker_form_content .mdc-text-field {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}

#bug_tracker_form #bug_tracker_form_content .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading, #bug_tracker_form #bug_tracker_form_content .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch, #bug_tracker_form #bug_tracker_form_content .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing, #bug_tracker_form #bug_tracker_form_content .mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading, #bug_tracker_form #bug_tracker_form_content .mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch, #bug_tracker_form #bug_tracker_form_content .mdc-text-field--textarea:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing {
  border-color: #00b5e3;
}

#bug_tracker_form #bug_tracker_form_content .mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: #00b5e3;
}

#bug_tracker_form #bug_tracker_form_content .mdc-text-field .mdc-text-field__input {
  caret-color: #00b5e3;
}

#bug_tracker_form #bug_tracker_form_content .mdc-text-field .mdc-text-field__input, #bug_tracker_form #bug_tracker_form_content .mdc-text-field .mdc-floating-label {
  font-size: 13px;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit {
  text-align: right;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit.is_sending #bug_tracker_submit_btn {
  display: none;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit .mdc-linear-progress {
  display: none;
  margin-top: 30px;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit.is_sending .mdc-linear-progress {
  display: block;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit .mdc-linear-progress__bar-inner {
  border-color: #00b5e3;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit input#bug_tracker_submit_btn {
  background-color: #00b5e3;
  color: #fff;
  font-weight: 700;
  border: 0;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 4px;
  outline: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

#bug_tracker_form #bug_tracker_form_content #bug_tracker_form_submit input#bug_tracker_submit_btn:hover {
  background-color: #0093b8;
}

#bug_tracker_form_submit_confirmation, #bug_tracker_form_submit_error {
  text-align: center;
  color: #00b5e3;
  margin-top: 20px;
  display: none;
}

#bug_tracker_form_submit_error {
  color: red;
}

#bug_tracker_form_submit_confirmation.in, #bug_tracker_form_submit_error.in {
  display: block !important;
}

#bug_tracker_form_footer .powered-by {
  background: #f4f5f7;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: -1px -2px 5px -2px #ccc;
  box-shadow: -1px -2px 5px -2px #ccc;
}

#bug_tracker_form_footer .powered-by a {
  color: #00b5e3;
  font-size: 12px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #bug_tracker_form #bug_tracker_form_header .close-icon>span.close-icon-1, #bug_tracker_form #bug_tracker_form_header .close-icon>span.close-icon-2 {
    left: 3px;
  }
  #bug_tracker_form #bug_tracker_form_content input, #bug_tracker_form #bug_tracker_form_content textarea {
    outline: none;
  }
}