/* This stylesheet is meant for custom styles, on top of the Titan Template */

.info-form .form-control {
  border-bottom: 1px solid #929750;
  box-shadow: none;
  padding: 7px 0;
  height: auto;
  margin-bottom: 13px;
}

.info-form textarea.form-control {
  height: 90px;
}


/* 0427 修改-element.css 位置 2359 */

.cart {
  float: right;
  margin-top: 11px;  /* element.css 為7px，要改成 11px */
  margin-left: 10px;
  cursor: pointer;
  z-index: 10;
  color: #202020;
} 

/* 0427 新增 */

 .log a {position: relative;}
    .log a::before {
        position: absolute;
        left: -15px;
        bottom: 90%;
        content: "";
        height: 0;
        width: 0;
        opacity: 0;
        transition: all 0.4s ease;
    }
    .log a::after {
        background: #D3D8C4;
        color: #7C8044;
        font-size: .85em ;
        position: absolute;
        left: -15px;
        bottom: 130%;
        content: attr(data-log);
        white-space: nowrap;
        padding: 5px 15px;
        margin-bottom: 28px;
        opacity: 0;
        transition: all 0.4s ease;
    }
    .log a:hover::before {bottom: 65%;}
    .log a:hover::after {bottom: 90%;}
    .log a:hover::after, .log a:hover::before {opacity: 1;}
}

/* End Add */
