.copyIcon {
	display: none;
	position: relative;
	color: #e50012 !important;
};
.tooltips {
  position: relative;                   /* 親要素を基準 */
  display: inline;                      /* 要素をインラインとして表示 */
  padding: 2px;                         /* テキストの前後の余白 */
  background-color: #CCC);       /* 背景色（透明度） */
  width:9em;                          /* 吹き出し全体の幅 */
  left : -8em;                           /* 表示位置 */
  bottom : 100%;                        /* 表示位置 */
  margin-bottom : 12px;                 /* 表示位置 */
  font-size: 80%;                       /* 文字サイズ */
}
.tooltips:after{
	width: 8em;
    /* 位置 */
    position: absolute;
    left: -8em;
    top: 0px;
    z-index: 1;

    /* 文字 */
    font-weight: normal;
    color: white;
    white-space: nowrap;

    /* 背景 */
    background-color: #e50012;
    padding:5px;
    border:none;
    border-radius: 5px;
    /*box-shadow: 1px 1px 3px rgba(0,0,0,0.20);*/
    box-shadow: 1px 1px 3px rgba(0,0,0,0.20);
 	content:"コピーしました";                      /* コンテンツの挿入 */
}
.fa-clipboard::before {
	color: #e50012;
}

#copyArea {
	display: none;
}

#copyAreaCart {
	display: none;
}
