.space-20 {
  padding-top: 20px;
}

.hide {
  display: none;
}

.form-title {
  text-align: center;
}

.form-title h3.title-with-description {
  line-height: 0.3;
}

.footer {
  text-align: center;
}

.footer-fix {
  position: fixed;
  bottom: 5px;
  width: 100%;
}

.column-login {
  border: 1px solid #d1d1d1;
  border-radius: .4rem;
  padding: 20px!important;
}

.form-inline {
  display: inline;
}

.box-center {
  margin: 0 auto;
  display: block;
  width: 50%;
}

.text-center {
  text-align: center!important;
}

.text-help {
  margin-top: -15px;
  font-size: 12px;
}

.text-error {
  color: red;
}

.button.button-red {
  background-color: #ca5c4d;
  border-color: #ca5c4d;
}

.button.button-icon {
  padding: 0 1.6rem;
}

a.title {
  color: #606c76;
}

label.error {
  margin-top: -15px;
  font-size: 12px;
  color: red;
  font-weight: normal;
}

.text-success {
  color: green;
}

.pull-right {
  float: right;
}

.full-width {
  width: 100%;
  display: block;
}

.pagination{
  margin:0;
  padding:0;
  text-align: center;
}

.pagination li{
  display: inline;
  margin-right: -1px;
  font: 13px/20px Arial, Helvetica, sans-serif;
  background: #FFFFFF;
}

.pagination li a{
  font-size: 1.1rem;
  padding: 10px 14px 10px 14px;
  border: 1px solid #ddd;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #9b4dca;
}

.pagination li.first {
  border-radius: .4rem 0 0 .4rem;
}

.pagination li.last {
  border-radius: 0 .4rem .4rem 0;
}

.pagination li a:hover{
  background: #EEE;
}

.pagination li.active {
  padding: 9px 14px 10px 14px;
  background: #9b4dca;
  color: #FFFFFF;
}

tr.details {
  border-top: 1px solid #ddd;
  background-color: #f9f9f9;
}

tr.details td {
  padding: 1.2rem 1.5rem;
}


input.copy, button.copy {
  float: left;
  outline: 0;
  box-shadow: none;
}

::-moz-focus-inner { 
  padding: 0;
  border: 0;
}

input.copy {
  border-radius: .4rem 0 0 .4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: .1rem solid #d1d1d1;  
  box-shadow: none;
  height: 3.8rem;
  padding: .6rem 1rem;
}

button.copy {
  position: relative;
  margin-right: 3px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.navigation-item a, .title a {
  color: #606c76;
}

.active-menu a, .navigation-item a:hover, .title a:hover{
  color: #9b4dca!important;
}

.copied::after {
  position: absolute;
  top: 0;
  right: 110%;
  display: block;
  content: "copied";
  padding: 0 6px;
  color: #fff;
  background-color: #c394df;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

.responsive_menu select {
  margin-top:5px;
}

.hide-on-desktop {
  display: none!important;
} 

.show-on-middle {
  display: none!important;
}

.img-loading {
  height: 16px;
  top: 4px;
  position: relative;
  width: 16px;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  .form-title h3.title-with-description {
    line-height: 1;
  }

  .hide-on-mobile {
    display: none!important;
  }

  .hide-on-desktop {
    display: block!important;
  } 

  .button {
    width: 100%;
  }
}

@media screen and (max-width: 808px) {
  .hide-on-middle {
    display: none!important;
  } 

  .show-on-middle {
    display: block!important;
  }
}