.clickable {
  cursor: pointer;
}

.edit-figure {
  background-color: #F2F2F3;
  color: #1c1c1c;
  overflow-x: hidden;
  min-height: 100vh;
}

.edit-figure-header {
  position: fixed;
  top: 0;
  z-index: 1210;

  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 60px;

  border-bottom: 1px solid #DDDDDD;
  background-color: #FAFAFA;
}

.edit-figure-close-button-container {
  margin-left: 20px;
}

.edit-figure-submit-button-container {
  margin-right: 20px;
}

.edit-figure-submit-button,
.edit-figure-close-button {
  font-size: 25px;

  transition: color .4s ease;
}

.edit-figure-submit-button {
  color: #5C68A4;
}

.edit-figure-submit-button:hover {
  color: #454F81;
}

.edit-figure-close-button {
  color: #777777;
}

.edit-figure-close-button:hover {
  color: #2e2e2e;
}

.edit-figure-content-container {
  display: flex;

  max-width: 1024px;

  margin: 75px auto 0;
  padding: 0 15px;
}

.edit-figure-form-sidebar-container {
  position: fixed;

  flex: 0 1 200px;
  min-width: 200px;
}

.edit-figure-delete-button {
  width: 100%;
  height: 35px;

  margin-bottom: 17px;

  border-radius: 5px;
  border: 1.5px solid #F19E97;
  background-color: #FAFAFA;
  color: #EA4335;

  font-family: 'AzoSans-Medium';
  font-size: 12.5px;

  transition: all .4s ease;
}

.edit-figure-delete-button:hover {
  border-color: #EA4335;
  background-color: #EA4335;
  color: #FAFAFA;
}

.edit-figure-sidebar-title {
  margin: 0 0 15px;

  color: #BBBBBB;

  font-family: 'AzoSans-Medium';
  font-size: 10px;
  text-transform: uppercase;
}

.edit-figure-auto-fill-container {
  width: 185px;

  margin-bottom: 23px;
}

.edit-figure-cross-publish-container {
  width: 185px;
}

.edit-figure-auto-fill {
  margin-bottom: 10px;
}

.edit-figure-auto-fill:last-of-type {
  margin-bottom: 0;
}

.edit-figure-auto-fill-switch-error-message {
  margin: 3px 0;

  color: #EA4335;

  font-size: 9px;
  line-height: 12px;
}

.edit-figure-switch-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edit-figure-for-sale-switch-container {
  width: 185px;

  margin-bottom: 25px;
}

.edit-figure-switch-text {
  cursor: text;
  color: #777777;

  font-family: 'AzoSans-Regular';
  font-size: 15px;

  transition: color .4s ease;
}

.edit-figure-switch-text--active {
  color: #000000;
}

.edit-figure-switch {
  position: relative;

  height: 20px;
}

.edit-figure-form {
  flex: 0 1 calc(100% - 200px);
  max-width: calc(100% - 200px);

  margin-left: 215px;
}

.edit-figure-generic-error-message {
  margin-bottom: 15px;
  
  border-radius: 5px;
}

.edit-figure-panel-container {
  margin-bottom: 15px;

  border-radius: 5px;
  border: 1px solid #DDDDDD;
  background-color: #FAFAFA;
}

.edit-figure-panel-heading {
  display: flex;
  justify-content: space-between;

  height: 50px;
  padding: 15px;

  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FAFAFA;
  color: #555555;

  font-family: 'AzoSans-Regular';
  font-size: 15px;
}

.edit-figure-panel-heading-button {
  width: 20px;
  height: 20px;

  outline: none;
  border: none;
  margin: 0 0 1px;
  padding: 0;

  color: #5c68a4;
  background: none;

  font-size: 20px;
  line-height: 1;

  transition: color .4s ease;
}

.edit-figure-panel-heading-button:hover,
.edit-figure-panel-heading-button--active {
  color: #08b58e;
}

.edit-figure-panel-controls-button-icon--non-clickable,
.edit-figure-panel-controls-button-icon--non-clickable:hover {
  color: #5c68a4;
  cursor: default;
}

.edit-figure-list {
  margin: 0;
  padding: 0;
}

.edit-figure-list .fg-dropdown-typeahead-search-clear-button {
  right: 18px;
}

.edit-figure-view.ng-leave,
.edit-figure-view.ng-enter {
  transition-duration: 1s;
  background: #e7e7e7;
}

.edit-figure-user-dropdown .fg-dropdown-typeahead-search-result-item-avatar-img {
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .edit-figure-form-sidebar-container {
    display: none;
  }

  .edit-figure-form {
    flex: 0 1 100%;
    max-width: 100%;

    margin-left: 0;
  }
}
