
/* 
    Created on : 2019
    Author     : Akila
*/

img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

#headernav nav ul.navbar-nav > li > a {
    text-align: center;
    font-size: 17.2px;
    color: #fff;
}

#headernav nav ul.navbar-nav > li > a .subline{
    font-size: 9px;
    text-align: center;
    color: #fff;
}

.products-post img.post-image {
    margin-bottom: 20px;
}

/*index page- services area */

.services1 h2 {
    font-size: 21.3px;
    font-weight: 600;
}

.services1 p{
    font-size: 14px;
    font-weight: 400;
}

.services1 a {
    background: #3498db;
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    margin-top: 20px;
    font-style: italic;
    font-weight: 100;
}

.services1 a:hover{
    transition: .2s all ease-in-out;
    color: #82c4e6;
    background: #2992d8;
}


/* product page */

.products .column-post {
    background: rgb(92, 174, 236);
    border: 1px solid #5d93b7;
}

.products .column-post .column-body {
    padding: 15px 0;
}

.products .column-post .column-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: center;
}

.products .column-post .column-body h3 a {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
}

.products .column-post .column-body p {
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0 20px;
    color: aliceblue;
}

.products .column-post .column-footer {
    padding: 8px 18px;
    border-top: 1.5px solid #5d93b7;
    background: #dadfe3;
    text-align: center;
}

.products .column-post .column-footer span {
    font-size: 18px;
    font-weight: 700;
    transition: all .2s ease-in-out;
}

.products .column-post .column-footer span:hover {
    letter-spacing: 1.5px;
    color: #0097A7;
}

.products .column-post .column-body a img,.products-home .column-post .column-body a img:hover {
    transition: all .4s ease-in-out;
}

.products .column-post .column-body a img:hover,.products-home .column-post .column-body a img:hover{
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* services page */

.services .column-post {
    background: skyblue;
    color: white;
}

.services .column-post .column-body {
    padding: 0 0 15px 0;
}

.services .column-post .column-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 10px 20px;
    text-align: center;
    background: navy;
    color: whitesmoke;
    font-weight: 500;
}

.services .column-post .column-body h3 a {
    color: whitesmoke;
    font-size: 18px;
    font-weight: 500;
}

.services .column-post .column-body p {
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0 20px;
    /*color: rgba(0, 0, 0, 0.65);*/
    font-weight: 400;
}

.services .column-post .column-footer {
    padding: 20px;
    border-top: 1px solid #e6eaed;
}

.fixed-image {
    background-size: cover;
    height: 250px;
    margin-top: -40px;
}

.space-top {
    padding-top: 60px;
}

.header-service h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(0,0,0,.15);
    text-align: -webkit-center;
    width: 72%;
}

@media only screen and (max-width: 767px){
    .header-service h2 {
        font-size: 24px;
        width: 100%;
    }
}


/* products sub page */

.products-sub .column-post {
    background: #82c4e6;
    /* color: white; */
    border: 1px solid aliceblue;
    box-shadow: 1px 0px 4px #3498db;
}

.products-sub .column-post .column-body {
    /* padding: 0 0 15px 0; */
}

.products-sub .column-post .column-body h3 {
    margin-top: 0;
    margin-bottom: 0px;
    padding: 8px 4px;
    text-align: center;
    background: transparent;
    font-size: 25px;
    font-weight: 300;
    color: aliceblue;
}

.products-sub .column-post .column-body h3 a {
    color: whitesmoke;
    font-size: 26px;
    font-weight: 300;
}

#overlay{
    background: rgba(0,0,0,.35);
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    padding: 103px 92px;
    margin-left: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
    -moz-transition: opacity .25s ease;
    -ms-transition: opacity .25s ease;
    -o-transition: opacity .25s ease;
}

@media only screen and (max-width: 1024px){
    #overlay {
        padding: 85px 67px;
    }
    
}

@media only screen and (max-width: 768px){
    #overlay {
        padding: 132px 130px;
    }
    
}

@media only screen and (max-width: 767px){
    #overlay {
        padding: 124px 118px !important;
    }
    
}

.column-body:hover #overlay{
    opacity: 1;
}

div#overlay span i, div#overlay span a {
    color: white;
    font-size: 20px;
    font-style: italic;
    font-weight: bolder;
    cursor: pointer;
}

/*  product details page  */

ul.related {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.related li .related-item {
    display: table;
    width: 100%;
    margin-bottom: 12px;
}

ul.related li .related-item .related-item-img {
    display: table-cell;
    width: 35%;
    vertical-align: top; 
}

ul.related li .related-item .related-item-info {
    padding-left: 8px;
    display: table-cell;
    vertical-align: top;
}

.related-item-info .title {
    margin: 0;
    padding: 0;
}

ul.related li .related-item .related-item-info span {
    display: block;
    font-weight: 400;
    font-size: 14px;
}

@media only screen and (min-width: 992px){
    .product-view .col-md-4{
        padding: 6px 0px 12px 20px;
    }
}

@media only screen and (max-width: 992px){
    .product-view img {
        margin-bottom: 15px;
    }
}

.product-info h3 {
    font-size: 32px;
    margin-top: 0;
    font-weight: 600;
    padding-top: 0;
}

.product-info p:nth-child(2) {
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
}

.product-info p {
    font-size: 12px;
    font-weight: 600;
}


/* product cart page */

.products-cart .column-post {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #cbd6d6;
}

.products-cart .column-post .column-body {
    padding: 0px;
}

.products-cart .column-post .column-body h3 {
    text-align: center;
    padding: 10px 0px 10px 0px;
    background: #3498db;
    margin: 0;
}

.products-cart .column-post .column-body h3 a {
    color: white;
    font-size: 19px;
    font-weight: bold;
}

.products-cart .column-post .column-body p {
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0 20px;
}

.products-cart .column-post .column-footer {
    background: #e6eaed;
    color: #777;
    padding: 6px 6px 45px 6px;
    border-top: 1px solid #e6eaed;
}

.column-post .sub-footer {
    background: aliceblue;
    padding: 14px 10px 40px 5px;
    border-top: 1.5px solid #cbd6d6;
}

.wp-block.default {
    border: 1px solid;
    border-color: #e0eded;
    background: #3498db;
}



@media (min-width: 992px){
    .product-list-filters {
        margin-bottom: 25px; 
        background: #fcfcfc !important; 
        border: 1px solid #e0eded !important; 
   }
}


.wp-block {
     margin: 0 0 15px 0; 
     -webkit-transition: all .3s linear; 
     transition: all .3s linear; 
     position: relative; 
     cursor: default; 
     border-radius: 2px; 
}

.light-gray {
    background: #fcfcfc;
    color: #000;
}

.wp-block:before, .wp-block:after {
    display: table;
    content: "";
}

@media (min-width: 992px) {
    .product-list-filters .filter {
        display: inline-block;
        float: left;
        margin-left: 30px;
        margin-top: 2px;
    }
}


.wp-block:after {
    clear: both;
}

.wp-block:before, .wp-block:after {
    display: table;
    content: "";
}

@media (min-width: 992px) {
    .product-list-filters .pagination {
        margin: 0;
        padding: 0;
        float: right;
        border: 0;
        border-radius: 0;
    }
}


@media (min-width: 992px) {
    .product-list-filters .sort-filter label {
        margin: 0;
        margin-right: 10px;
        font-weight: 400;
    }
}


.filter.sort-filter .form-inline {
    margin: 11px 0 0 0;
    color: white;
    font-size: 16px;
    text-transform: capitalize;
}

.filter.sort-filter .form-inline label {
    padding-right: 6px;
    display: inline-block;
}

.filter.sort-filter .form-inline select {
    width: auto;
}

@media only screen and (max-width: 767px){
    .products-cart .column-post .column-body img {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 768px){
    .products-cart .column-post .column-body a img {
        margin: 0 auto;
    }
}

/* navigation bar */

ul.nav.navbar-nav.smart-menu.dd-menu li a i {
    font-size: 20px;
    padding-right: 2px;
    color: #e6eaed;
}

#headernav nav ul.navbar-nav > li > a:hover {
    color: cornsilk;
}

#headernav nav ul.navbar-nav > li > a>i:hover {
    color: cornsilk;
}


/* index page */

.heading.uppercase h2 a {
    color: #7D9090;
    font-size: 34px;
    font-weight: 600;
}

.heading.uppercase h2{
    font-size: 34px;
    font-weight: 600;
    color: #7D9090;
}

/* about us -meet the team area*/

.content-box.box-padded.text-center img {
    margin: 0 auto;
}

/* breadcrumb */

.page-heading h1 {
    font-size: 30px;
    font-weight: 400;
    color: #3498db;
}

ol.breadcrumb li a {
    font-size: 1.3em;
}

@media only screen and (max-width: 420px){
    .page-heading h1 {
        font-size: 24px;
        padding-top: 5px;
    }
}


/* modal  */

.modal-body h2 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: capitalize;
}

.form-horizontal .control-label {
    font-weight: 500;
}

.btn-custom-lg{
    padding: 12px 15px !important;
}

/* index page product section */

.products-home .column-post {
    background: #3498db;
    border: 1px solid #82c4e6;
}

.products-home .column-post .column-body {
    /* padding: 15px 0; */
    padding-top: 15px;
}

.products-home .column-post .column-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.products-home .column-post .column-body h3 a {
    color: white;
    font-size: 20px;
    font-weight: 300;
    text-transform: capitalize;
}

@media only screen and (max-width: 768px){
    .products-home .column-post .column-body h3 a {
        font-size: 18px;
    }
}

/* home page- main slider */

@media only screen and (max-width: 767px){
    .tp-caption{
        display: none;
    } 
}

/* home page- our services */

.content-box.box-centered.services1 img {
    border-radius: 25px;
    cursor: pointer;
}

.content-box.box-centered.services1 img:hover {
    opacity: .9;
}

/* footer section */

footer.footer-primary p {
    color: white;
    line-height: 24px;
}

footer ul.contact-info li {
    color: white;
}

a.company:hover {
    color: #e67e22 !important;
}

/* about us */

.shine-aboutus p {
    text-align: justify;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
}

.team .col-md-3 .content-box h3 {
    font-size: 20px;
    font-weight: 400;
    /* text-decoration: underline; */
    text-align: center;
}

/* product shops page*/

.mb10 .column-post span {
    color: #3498db;
    font-size: 14px;
    font-weight: 600;
}

.mb10 .column-post .column-footer p {
    font-size: 15px;
    text-align: justify;
    font-weight: 400;
    color: #999;
    /*height: 140px;*/
}

/*div#SuperSub .mb10 {
    height: 480px;
}*/

/* product related product */

ul.related h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tab-content .tab-pane {
    font-size: 16px;
    line-height: 25px;
    color: #999;
}

/* contact us */

address strong {
    font-size: 16px;
    /* font-weight: 600 */
}

form.contact-form .form-group label {
    font-size: 17px;
    font-weight: 600;
}


/****** LOGIN MODAL ******/
.loginmodal-container {
  padding: 40px 30px;
  max-width: 350px;
  width: 100% !important;
  background-color: #F7F7F7;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.loginmodal-container h1 {
    text-align: center;
    font-size: 27px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.loginmodal-container input[type=submit] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.loginmodal-container input[type=text], input[type=password] {
  height: 34px;
  font-size: 15px;
  width: 100%;
  margin-bottom: 12px;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid #5f7676 !important;
  border-top: 1px solid #c0c0c0;
   border-radius: 2px; 
  padding: 0 12px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  background: #fafbfc;
}

.loginmodal-container input[type=text]:hover, input[type=password]:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loginmodal {
  text-align: center;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
/* border-radius: 3px; */
/* -webkit-user-select: none;
  user-select: none; */
}

.loginmodal-button {
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0,0,0,0.1); 
  background-color: #3498db;
  padding: 10px 128px;
  font-size: 15px;
  font-weight: 300;
}

.loginmodal-button:hover {
  border: 0px;
  text-shadow: 0 1px rgba(0,0,0,0.3);
  background-color: #1d6fa5;
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
} 

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    background-color: white !important;
    background-image: none;
    color: rgb(0, 0, 0);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit !important;
  -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
  transition: background-color 5000s ease-in-out 0s;
}

.login-help{
  font-size: 12px;
  margin-top: 4px;
}

.login-help a {
    color: #c54f4f;
    font-weight: 600;
}

/* top header */

.top_nav {
    display: block;
    background: #19316a;
    color: white;
    width: 100%;
    z-index: 999;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    height: auto;
}

.top_nav .right {
    float: right;
}

.top_nav .left {
    float: left;
}

.top_nav ul {
    float: right;
    padding: 0px;
    margin: 0px 0px 0px 0px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.top_nav ul li {
    float: left;
    padding: 0px;
    margin: 0px 23px 0px 0px;
    letter-spacing: 0.3px;
    list-style: none;
    font-size: 15px;
}

@media only screen and (max-width: 767px){
    .top_nav ul li {
        margin: 0px 13px 0px 0px;
    }
}

.top_nav ul li i {
    font-size: 20px;
    color: white;
}

body.header-fixed-top .top_nav{
    position: fixed;
    top: 0;
    width: 100%;
}

.top_nav ul li a {
    color: whitesmoke;
}

.top_nav ul li img {
    max-width: 100%;
    height: auto;
    width: 20px;
}

.site-name {
    font-size: 17px !important;
    font-weight: 700;
    letter-spacing: 2px !important;
}

@media only screen and (max-width: 420px){
    .top_nav ul li {
        font-size: 10px;
    }
    
    .top_nav ul li i {
        font-size: 13px;
        color: white;
    }
    
    body.header-fixed-top #headernav {
        top: 39px !important;
    }
    
    .site-name {
        font-size: 10px !important;
    }
}


@media only screen and (max-width: 420px){
    .top_nav ul li {
        font-size: 8px;
    }
    
    .top_nav ul li i {
        font-size: 11px;
        color: white;
    }
    
    .site-name {
        font-size: 8px !important;
    }
}

/* cart */

.table-cart {
    border-right: 1px solid #e0eded;
    border-left: 1px solid #e0eded;
    border-bottom: 1px solid #e0eded;
}

.table-cart td:first-child {
    border-right: 1px solid #e0eded;
}

.btn{
    border-radius: 0 !important;
    margin-left: 2px;
}

.table-cart thead tr td {
    background: #3498db;
    color: white;
    border: 0 !important;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.section-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
}

.order>td {
    font-size: 18px;
    padding: 0px 14px !important;
}

.order>td>h5 {
    font-size: 20px;
    font-weight: 600;
    color: #313e3e;
}

.cart-remove {
    color: red;
}

/* cart shipping page */

ol.progtrckr {
    margin-bottom: 40px;
    padding: 0;
    list-style-type: none;
}

ol.progtrckr li.progtrckr-done {
    color: #3498db;
    border-bottom: 4px solid #3498db;
    font-weight: bold;
}

ol.progtrckr li.progtrckr-done:before {
    content: "\f058";
    font-family: FontAwesome;
    color: #fff;
    background-color: #3498db;
    height: 1.2em;
    width: 1.2em;
    line-height: 1.2em;
    border: none;
    border-radius: 1.2em;
}

ol.progtrckr li:before {
    position: relative;
    bottom: -2.5em;
    float: left;
    left: 50%;
    line-height: 1em;
}

ol.progtrckr li:before {
    position: relative;
    bottom: -2.5em;
    float: left;
    left: 50%;
    line-height: 1em;
}

ol.progtrckr li:after {
    content: "\00a0\00a0";
    font-family: FontAwesome;
}

ol.progtrckr li.progtrckr-todo {
    color: #c0c0c0;
    border-bottom: 4px solid #c0c0c0;
}

ol.progtrckr li {
    display: inline-block;
    text-align: center;
    line-height: 3em;
}

ol.progtrckr[data-progtrckr-steps="4"] li {
    width: 24%;
}

ol.progtrckr li.progtrckr-todo:before {
    content: "\f111";
    font-family: FontAwesome;
    color: #c0c0c0;
    background-color: transparent;
    font-size: 1.5em;
    bottom: -1.6em;
}

ol.progtrckr li:before {
    position: relative;
    bottom: -2.5em;
    float: left;
    left: 50%;
    line-height: 1em;
}

ol.progtrckr li:after {
    content: "\00a0\00a0";
    font-family: FontAwesome;
}

.shipping-form h2 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px){
    .shipping-form h2 {
        font-size: 20px;
    }

}

/*.required::-webkit-input-placeholder:after {
    content: " *";
    color: red;
}

.required:-moz-placeholder:after {
    content: " *";
    color: red;  
}

.required:-ms-input-placeholder:after {  
    content: " *";
    color: red;  
}

.asterisk::-webkit-input-placeholder:after {
    content: " *" !important;
    color:    #f00;
    
}
.asterisk:-moz-placeholder:after {
    content: " *" !important;
    color:    #f00;
    opacity:  1;
}
.asterisk::-moz-placeholder:after {
    content: " *" !important;
    color:    #f00;
    opacity:  1;
}
.asterisk:-ms-input-placeholder:after {
    content: " *" !important;
    color:    #f00;
}

input[type=text].required::-webkit-input-placeholder {
  color: blue;
}
input[type=text].required::-webkit-input-placeholder:before {
  content: '*';
  color: red;
  vertical-align: top;
  font-size: small;
}*/

@media only screen and (max-width: 767px) {
    .form-control{
        margin-bottom: 10px;
    }
    
    ol.breadcrumb li a {
        font-size: 0.8em;
    }
    
    .row-border .form-group {
        padding: 1px 5px !important;
    }
}

.form-horizontal {
    border: 1px solid #5f7676;
    padding: 22px 10px 0px 10px;
}

.center{
    margin: 0 auto !important;
}

/* user account page */

ul.user-account li {
    list-style: none;
    text-align: left;
    padding: 7px 12px;
    font-size: 16px;
    background: #3498db;
    margin-bottom: 5px;
    cursor: pointer;
    font-weight: 300;
}

ul.user-account li:hover {
    background: #19316a;
}

ul.user-account {
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

ul.user-account a {
    color: white;
}

ul.user-account li a {
    color: white;
}

.title {
    font-size: 24px;
    font-weight: 500;
}

.user-profile-img img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

input[type="text"]::-webkit-input-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="textarea"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #5f7676;
}
input[type="text"]::-moz-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="textarea"]::-webkit-input-placeholder { /* Firefox 19+ */
    color: #5f7676;
}
input[type="text"]:-ms-input-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="textarea"]::-webkit-input-placeholder { /* IE 10+ */
    color: #5f7676;
}
input[type="text"]:-moz-placeholder,input[type="password"]::-webkit-input-placeholder,input[type="textarea"]::-webkit-input-placeholder { /* Firefox 18- */
    color: #5f7676;
}

::-webkit-input-placeholder {
   color: #5f7676;
}

::-webkit-textarea-placeholder {
   color: #5f7676;
}

:-moz-placeholder { /* Firefox 18- */
   color: #5f7676;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #5f7676;  
}

:-ms-input-placeholder {  
   color: #5f7676;  
}

textarea::-webkit-input-placeholder {
color: #5f7676 !important;
}
 
textarea:-moz-placeholder { /* Firefox 18- */
color: #5f7676 !important;  
}
 
textarea::-moz-placeholder {  /* Firefox 19+ */
color: #5f7676 !important;  
}
 
textarea:-ms-input-placeholder {  
color: #5f7676 !important;  
}

.final-amount{
    font-size: 20px;
    font-weight: bold;
    color: #4d5254;
}

.final-amount-last{
    border-bottom: 2px double black;
    text-align: center !important;
}

/* sucess page */

.sucess{
    padding: 23px 0 23px 0px;
    border: 2px solid #3498db;
    /*box-shadow: 6px 7px 6px #3498db;*/
}

.header {
    font-size: 30px;
    text-align: center;
    padding: 10px 0px 10px 0px;
    border-top: 1px solid #5f7676;
    border-bottom: 1px solid #5f7676;
}

.invoice-intro {
    padding: 20px 0px 20px 0;
}

.invoice-intro h1 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
}

.invoice-intro p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .2px;
}

h2.sucess-forms-heading {
    font-size: 29px;
    font-weight: 600;
    letter-spacing: .5px;
}

.order-status {
    background: #3498db;
    color: white;
    padding: 8px;
}

.thank-last-div {
    background: #1d6fa5;
    margin-top: 40px;
}

.thank-last-div h2, .thank-last-div h3 a {
    color: white;
}

.thank-last-div h2{
    font-size: 30px;
    font-weight: 600;
}

.thank-last-div h3 a{
    font-size: 24px;
    font-weight: 300;
}

.print-receipt{
    color: #5f7676;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.space{
    margin-top: 40px;
}

.social-icon {
    width: 38px;
}

.related-item-img {
    position: relative;
}

.related-item-img>a>img {
    max-width: 100%;
    height: auto;
}

.discount-text{
    font-weight: bold;
    color: #ff0300;
}






