.is-enp-translation {
    color: #000 !important;
    cursor: pointer;
    background: #ddd !important;
    border-bottom: 2px dotted #000 !important
}
.is-enp-translation:focus {
    position: relative
}
.is-enp-translation:focus .is-enp-saveTranslations {
    display: block
}
.is-enp-translation:after {
    display: none
}
.is-enp-translation:before {
    display: none
}
em.is-enp-translation {
    display: block !important;
    margin-bottom: 10px
}
.is-enp-saveTranslations {
    position: absolute;
    right: 0;
    bottom: -20px;
    display: none;
    width: 60px;
    height: 20px;
    font-size: 13px;
    font-weight: normal;
    background: #e31818;
    border: none
}
.is-enp-saveTranslations:hover {
    color: #fff;
    background: #000
}
.is-enp-saveTranslations:active {
    display: block !important;
    background: #888
}
[data-medium-focused] {
    background: yellow !important
}
.is-trans-changed {
	box-shadow: 0 0 9px green;
}
.is-translation-area {
    width: 80%;
    margin: 20px 0;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
    height: 200px;
    border: 1px solid #CCC;
}
.is-trans-alert {
    color: #fff; 
    font-size: 16px; 
    line-height: 22px;
    display: none; 
    margin: 10px 0; 
    padding: 20px; 
}
.is-trans-alert.is-success {
    background: green;
}
.is-trans-alert.is-error {
    background: red;
}
.is-save-trans {
    display: block;
    border: 0;
    width: 250px;
    padding: 20px 0;
    text-align: center;
    background: #000;
    font-size: 16px;
    color: #fff;
    position: relative;
    transition:all 0.1s linear;
}
.is-reload-trans {
    display: block;
    border: 0;
    padding: 10px;
    width: 100px;
    text-align: center;
    background: orange;
    font-size: 12px;
    color: #fff;
    position: fixed;
    font-family: "Arial";
    bottom: 0;
    left:0;
    transition:all 0.1s linear;
}
.is-clear-trans {
    display: block;
    border: 0;
    padding: 10px;
    text-align: center;
    background: #000;
    font-size: 12px;
    color: #fff;
    position: fixed;
    font-family: "Arial";
    bottom: 0;
    left:110px;
    transition:all 0.1s linear;
}
.is-clear-trans-success {
  background: green;
}
.is-clear-trans:hover {
    background: #333;
}
.is-save-trans:hover {
    background: #333;
}

.is-trans-loader {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 8px;
  display: none;
  right: 10px;
  clear: both;
}

.is-trans-loader > div {
  background-color: #ccc;
  height: 100%;
  width: 3px;
  display: block;
  margin-left: 1px;
  float: left;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.is-trans-loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.is-trans-loader .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.is-trans-loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.is-trans-loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}