/*@CHARSET "UTF-8";*/


#tx_dictionary_box
{
    width: 400px;
    display:none;
    opacity: 0;
    text-align: left;
    padding: 20px;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #e5e5e5;
    box-shadow: rgba(200,200,200,0.7) 0 4px 10px -1px;
    transition: opacity .3s ease, display .3s ease allow-discrete; 

    &.visible {
        opacity: 1;
        display: block;
    }
}

@starting-style {
    #tx_dictionary_box.visible {
      opacity: 0;
    }
  }

span.tx_dictionary_lookup, a[href^="dict://"], a[href^="#dict//"]{	
	border-bottom: 1px dotted #000;
    text-decoration: none;
    cursor: help;
    color: currentColor !important;	
}

