/*
Theme Name:   	Storefront Child Theme
Theme URI:    	https://github.com/stuartduff/storefront-child-theme
Author:       	Stuart Duff
Author URI:     http://stuartduff.com
Template:     	storefront
Description:  	This is a blank child theme for WooThemes StoreFront theme
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront
Tags:         	black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/*
 * Add your own custom css below this text.
 */



.tracking-row {
	display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.tracking-row label {
	color: #777771;
	font-size: 12px;
    font-weight: 700;
}

.tracking-row input {
	border-color: #777771;
    background-color: #EDEDED;
    color: #000000;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;

    box-sizing: border-box;
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 9px;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    background-image: unset;
    line-height: 1.3em;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.tracking-submit button {
	padding:10px!important;
	-webkit-transition: width 0.5s;
  	transition: width 0.5s;
}

.tracking-submit button.active {
	width: 160px;
}
.tracking-submit button.active .track-loader {display: inline-block;}
.track-loader {
    border: 3px solid #fff;
    border-top: 3px solid #47b32d;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
    /* margin-top: 50px; */
    display: none;
    vertical-align: middle;
    margin-left: 10px;

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.order-status-row {
	display: flex;
	text-align:center;
	margin-left:0;
	margin-right: -20px;
	margin-top:30px;
}
.order-status-row .status-col {
	flex-basis: auto;
	flex-grow: 1;
	padding-right:20px;
}

.order-status-row .icon-wrapper .icon {display: inline-block;}
.order-status-row .icon-wrapper .icon img {width: 100px;height: 100px;}
.order-status-row .status-col span.icon.active {display: none;}
.order-status-row .status-col.completed span.icon {display: none;} 
.order-status-row .status-col.completed span.icon.active {display: inline-block;}
.order-status-row .status-col .status-label {
	color: #161921;
    font-family: halyard-display, sans-serif;
	font-size: 1.333em;
    font-weight: 500;
    line-height: 1.2em;
    margin-top: 1.2em;
}
.order-status-row .status-col.completed .status-label {
	color: #47B32D;
}



.icon {
    transition: transform 0.3s ease;
}

/* Hover animation */
.icon-wrapper:hover .icon {
    transform: translateY(-10px); /* Move up by 10px on hover */
}

.icon-wrapper .icon {
    transition: transform 0.3s ease; /* Smooth transition for the animation */
}

.icon-wrapper .icon img {
    vertical-align: middle;
}

/* Slide down animation when mouse out */
.icon-wrapper:not(:hover) .icon {
	transition-delay: 0.1s; 
    transform: translateY(0); /* Move back to original position on mouse out */
}

.error-text-msg{
    background: #e71b1bbd;
    color: #fff;
    padding: 0px 10px;
    border-radius: 3px;

}

.status-label p {
    margin-bottom: 0px;    
    font-size: 20px;
    line-height: 24px;
    min-height: 50px;
}
.status-label .status-date {
    font-size: 16px;
    line-height:20px;
    max-width: 120px;
}

@media only screen and (max-width: 767px) {
    .order-status-row { flex-wrap:wrap; }
    .order-status-row .status-col {flex: 50%;}
    .status-label p {min-height: auto;}
    .status-col {margin-bottom:20px;}
    .order-status-row .status-col .status-label {margin-top:10px}
}

.hide {display: none;}
.cod_payment_status.column-cod_payment_status { display:flex; justify-content:center; }

mark.ps-btn {
    display: inline-flex;
    line-height: 2.5em;
    color: #454545;
    background: #e5e5e5;
    border-radius: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    margin: -.25em 0;
    cursor: inherit !important;
    white-space: nowrap;
    max-width: 100%;
    font-weight: 600;
}
mark.ps-btn span {
    margin: 0 1em;
    overflow: hidden;
    text-overflow: ellipsis;
}
mark.ps-unpaid {
    background: #fda8a8;
    color: #000;
}
mark.ps-paid {
    background: #77d571;
    color: #000;
}