/*  ----------------------------------------------------------------------------
    This file will load automatically when the YourStore theme is active. You can use it
    for custom CSS.
*/
.hor-minimalist-b
{
	font-family: "Ubuntu Mono", Sans-Serif;
	font-size: 14px;
	background: #fff;
	/*margin: 45px;*/
	width: /*480px*/90%;
	border-collapse: collapse;
	text-align: left;
}
.hor-minimalist-b th
{
	font-size: 17px;
	font-weight: normal;
	color: #039;
	padding: 10px 8px;
	border-bottom: 2px solid #6678b1;
}
.hor-minimalist-b td
{
	border-bottom: 1px solid #ccc;
	/*color: #669;*/
	padding: 13px 8px;
}
.hor-minimalist-b tbody tr:hover td
{
	color: #FA4E64;
}

.footer-table-s{
    border-collapse: collapse;
    width:99%;
}

.footer-table-s td{
    line-height: 30px;
}

.icontainer {
    position: relative;
    width: 99%;
    height: 1px;
    background: #ccc;
    overflow: hidden;
}

.lline {
    position: absolute;
    height: 1px;
    width: 50%;
    background: linear-gradient(to left, #ccc, #ccc 0%, #fa4e64 0%);
    animation: mercuryEffect 4s infinite;
}

@keyframes mercuryEffect {
    0% {
        width: 0;
        height: 2px;
        background: linear-gradient(to left, #ccc, #ccc 0%, #fa4e64 0%);
    }
    50% {
        width: 200px;
        height: 2px;
        background: linear-gradient(to left, #ccc, #ccc 0%, #fa4e64 100%);
    }
    100% {
        width: 0;
        height: 2px;
        background: linear-gradient(to left, #ccc, #ccc 0%, #fa4e64 0%);
    }
}