body.product-warranty section.page-title {
    margin-bottom: 35px;
}
body.product-warranty .content-mid {
    position: relative;
    padding: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 21px rgb(0 0 0 / 21%);
    -moz-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    -ms-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    -o-box-shadow: 0 0 21px rgba(0,0,0,0.21);
    box-shadow: 0 0 21px rgb(0 0 0 / 21%);
    text-align: justify;
    margin-bottom: 30px;
}
body.product-warranty .form-check {
	margin-bottom: 20px;
}
body.product-warranty .over-input {
    display: inline-block;
    position: relative;
    margin-right: 10px;
}
body.product-warranty input[name="filter_search"] {
    cursor: text;
    font-size: 12px;
    font-style: italic;
    min-width: 275px;
    border: 1px solid #ff3413;
    border-radius: 3px;
    padding: 0 10px;
}
body.product-warranty .loader.loader-custom {
    position: absolute;
    right: 7px;
    top: 8px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #3498db;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}
body.product-warranty a.button-check {
    background: #ff3413;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding: 1px 15px;
    font-size: 12px;
    border-radius: 3px;
    cursor: pointer;
}
.desc-warranty ol {
    margin-left: 15px;
}
.desc-warranty ol li {
    list-style: decimal;
}

table.cus-info {
    width: 100%;
    background-color: #f1f1f1;
    box-shadow: 0 2px 4px darkgrey;
    background: linear-gradient(rgba(255,255,255,.75), rgba(255,255,255,.75)), url(../image/lg-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}
table.cus-info td:nth-child(1) {
    min-width: 110px;
}
table.cus-info td {
    padding: 8px 10px;
    border-bottom: 1px solid #ececec;
    color: #666;
    text-align: left;
}
table.cus-info .icon {
    display: inline-block;
}
table.cus-info .icon i.fa-check {
    color: #78b13f;
}
table.cus-info .icon i.fa-times {
    color: #ff0000;
}

@media (max-width: 480px) {
	body.product-warranty input[name="filter_search"] {
		min-width: 220px;
	}
    body.product-warranty .content-mid {
        padding: 0;
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        -ms-box-shadow: unset;
        -o-box-shadow: unset;
        box-shadow: unset;
    }
    body.product-warranty #column-right {
        padding-left: 0; 
    }
}
@media (max-width: 360px) {
	body.product-warranty input[name="filter_search"] {
		min-width: 200px;
	}
}

@-webkit-keyframes spin {
  	0% { -webkit-transform: rotate(0deg); }
  	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  	0% { transform: rotate(0deg); }
  	100% { transform: rotate(360deg); }
}