/*cart css start*/

.mar-top-8 {
    margin-top: 8em;
}

.value-button {
    display: inline-block;
    border: 1px solid #655d5d;
    margin: 0px;
    width: 40px;
    height: 39px;
    text-align: center;
    vertical-align: middle;
    padding: 7px 0;
    background: #655d5d;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

.value-button:hover {
    cursor: pointer;
}

#decrease {
    margin-right: -4px;
    border-radius: 0px 0 0 0px;
    margin-top: -2px;
}

#increase {
    margin-left: -4px;
    border-radius: 0 0px 0px 0;
    margin-top: -2px;
}

#input-wrap {
    margin: 0px;
    padding: 0px;
}

input#number,
input#quantity {
    text-align: center;
    border: none;
    border-top: 1px solid #655d5d;
    border-bottom: 1px solid #655d5d;
    background-color: #938f8f;
    margin: 0px;
    width: 39px;
    height: 39px;
    color: #fff;
}

.selfo--inputQty {
    margin: 0 auto;
}

.selfo--inputQty .value-button {
    background: #25979e;
    border: 1px solid #196e73;
}

.selfo--inputQty input#quantity {
    border-top: 1px solid #196e73;
    border-bottom: 1px solid #196e73;
    background-color: #fff;
    color: #636363;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shopping-cart {
    font-size: 18px;
    color: #101920;
}

.cart-bg {
    background-color: #fff;
    padding-bottom: 2em;
    margin-bottom: 4em;
}

.cart-table tbody tr td {
    border: none;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 2em;
    padding-top: 2em;
}

.cart-tbl-align {
    padding: 10px 2em;
}

.cart-hr {
    border-top: 1px solid #dfdfdf;
}

.pdt-name {
    color: #333;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.pdt-range {
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.pdt-unt-price {
    padding-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.pdt-total-price {
    padding-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.pdt-del a i {
    font-size: 17px;
    color: #e35c5c;
    padding-top: 9px;
}

.cart-count {
    font-size: 14px;
    color: #777;
}

.cart-total tbody tr td {
    border: none;
    font-size: 17px;
    color: #777;
}

.cart-total tbody tr:nth-child(3) {
    border-top: 1px solid #777;
}

.sim-btn {
    line-height: 24px;
    height: 40px;
    text-align: center;
    /* margin-right: auto; */
    /* margin-left: auto; */
    margin-top: 10px;
    /* width: 60%; */
    cursor: pointer;
    border-radius: 5px;
}

.shipping-btn {
    color: rgb(5, 151, 158);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    border: 1px solid rgb(5, 151, 158);
    background-color: transparent;
    overflow: hidden;
    font-size: 16px;
    padding: 6px 19px;
}

.shipping-btn span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.shipping-btn::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 8px;
    left: 0;
    opacity: 0;
    -webkit-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.shipping-btn:hover {
    background-color: rgb(5, 151, 158);
    color: #fff;
}

.shipping-btn:hover > span {
    opacity: 0;
    -webkit-transform: translate(0px, 40px);
    transform: translate(0px, 40px);
}

.shipping-btn:hover::after {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.continue {
    background-color: transparent;
    color: #333;
    border-color: #777;
}

.continue:hover,
.continue:focus {
    background-color: #000;
    outline: none;
}

.checkout {
    background-color: #777777;
    color: #fff;
    border-color: #777;
}

.checkout:hover,
.checkout:focus {
    outline: none;
    background-color: #000;
}

.cart-img-ht {
    height: 130px;
}

@media screen and (max-width: 768px) {
    .cart-img-ht {
        height: auto;
    }
}

.lbl-qty {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding-top: 5px;
    color: #aaa;
}

.qty-select {
    background-color: transparent;
    border-color: transparent;
    border-radius: 4px;
    margin-top: 0px;
    padding-right: 0px;
    color: #333;
    height: 36px;
    font-size: 16px;
    font-weight: 600;
}

.qty-select:focus {
    outline: none;
}

.qty-select option {
    color: #000;
}


/*cart css end*/


/*checkout css start*/

.checkout-background {
    /*background-color: #fff;*/
    margin-bottom: 20px;
    /*box-shadow: 0 1px 4px 0 rgba(0,0,0,.1);*/
}

#steps {
    width: 90%;
    padding: 0px;
    margin: 60px auto;
}

#steps ul,
#steps li {
    margin: 0;
    padding: 0;
    list-style: none;
}

#steps ul {
    display: table;
    width: 100%;
}

#steps li {
    display: table-cell;
    position: relative;
}

#steps li:first-child {
    width: 50px;
}

#steps li:first-child .step:before {
    content: none;
}

#steps .step {
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 50%;
    border-color: transparent;
    line-height: 37px;
    font-size: 15px;
    text-align: center;
    color: #bbb;
    background-color: #eee;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.075);
    float: right;
}

#steps .step:nth-child(n+2) {
    margin: 0 0 0 100px;
    transform: translate(0, -4px);
}

#steps .step:before {
    height: 4px;
    display: block;
    background-color: #eee;
    position: absolute;
    content: '';
    border-radius: 5px;
    right: 45px;
    left: 5px;
    top: 50%;
}

#steps .step:after {
    display: block;
    transform: translate(-42px, 10px);
    color: #818698;
    content: attr(data-desc);
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    min-width: 120px;
}

#steps .step.active {
    border-color: #2D6CA2;
    color: white;
    background: #73B5E8;
    background-image: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
}

#steps .step.active:before {
    background: linear-gradient(to right, #58bb58 0%, #418AC9 100%);
}

#steps .step.active:after {
    color: #2D6CA2;
    font-weight: 600;
}

#steps .step.done {
    background-color: #58bb58;
    border-color: #469F46;
    color: white;
    background-image: linear-gradient(to bottom, #5cb85c 0, #449d44 100%);
}

#steps .step.done:after {
    color: #469F46;
}

#steps .step.done:before {
    background-color: #58bb58;
}

#steps .step .icon-valid {
    width: 16px;
    height: 16px;
    background-image: url('../img/icon/check.png');
    display: block;
    margin: 10px auto;
}

#steps .pulse::before {
    content: '';
    position: absolute;
    background: url(../img/icon/process.svg) no-repeat 50% 50%;
    width: 44px;
    height: 44px;
    top: 0;
    right: 0;
    margin: -2px -2px 0 0;
    opacity: 0.5;
}

.selfo {
    font-size: 20px;
    color: #777;
}

.checkout-frm-ctrl {
    background-color: #f3f3f3;
    border-color: transparent;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    height: 40px;
    font-size: 14px;
    color: #101920;
}

.checkout-frm-ctrl:hover {
    box-shadow: 4px 4px 10px #cdcdcd;
}

.checkout-frm-ctrl:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.checkout-frm-grp {
    padding-bottom: 10px;
}

.sign-btn {
    line-height: 24px;
    height: 40px;
    text-align: center;
    /* margin-right: auto; */
    /* margin-left: auto; */
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

.sign-in {
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    border: 1px solid rgb(5, 151, 158);
    background-color: rgb(5, 151, 158);
    overflow: hidden;
    font-size: 16px;
    padding: 6px 19px;
}

.sign-in span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sign-in::after {
    content: attr(data-text);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 8px;
    left: 0;
    opacity: 0;
    -webkit-transform: translate(-30%, 0);
    transform: translate(-30%, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sign-in:hover {
    background-color: transparent;
    color: #333;
}

.sign-in:hover > span {
    opacity: 0;
    -webkit-transform: translate(0px, 40px);
    transform: translate(0px, 40px);
}

.sign-in:hover::after {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.forgot {
    font-size: 14px;
}

.forgot a {
    color: #777;
    text-decoration: none;
}

.sign-up {
    font-size: 14px;
    padding-top: 10px;
}

.sign-up a {
    color: #777;
    text-decoration: none;
}

.checkout-bg {
    /*background-color: #111;*/
    padding: 0px;
    /*padding-bottom: 1em;*/
    /*padding: 3em;*/
}

.social-btn {
    line-height: 24px;
    height: 40px;
    text-align: center;
    /* margin-right: auto; */
    /* margin-left: auto; */
    margin-top: 10px;
    width: 48%;
    cursor: pointer;
    border-radius: 5px;
}

.fb {
    border-color: #475993;
    background-color: #475993;
    width: 80%;
}

.ggl {
    border-color: #f34a38;
    background-color: #f34a38;
    width: 80%;
}

.fb:hover {
    border-color: #222e55;
    background-color: #222e55;
}

.ggl:hover {
    border-color: #d22215;
    background-color: #d22215;
}

.bdr-rt {
    border-right: 2px solid #2a2828;
}

.new-address {
    padding: 3em;
}

.continue-btn {
    width: auto;
    float: right;
}

.name {
    color: #212121;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
}

span.modal-close {
    background: linear-gradient(to bottom, #6acad0 0, #1a666b 100%);
    color: #fff;
    height: 30px;
    width: 30px;
    font-size: 15px;
    line-height: 30px;
    position: absolute;
    right: -10px;
    top: -13px;
    text-align: center;
    border-radius: 50%;
}

.checked-edit .btn-success-custom:hover {
    background: #1c8d94;
    color: #fff;
}

.btn-success-custom {
    background: rgba(37, 151, 158, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    color: #1c8d94;
    font-size: 12px;
}

.mar-t-5 {
    margin-top: 5px;
}

h4.modal-title.caps {
    font: normal 22px/50px "Roboto";
    padding: 15px 0 10px;
    text-align: center;
    margin: 0 15px 25px;
    border-bottom: 1px solid #efefef;
    color: #404040;
}

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox + label:before {
    content: "";
    margin-right: 5px;
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #25979e;
}

.styled-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.styled-checkbox:checked + label:before {
    background: linear-gradient(to bottom, #55b5bb 0, #25979e 100%);
}

.address-align {
    color: #525252;
    font: 400 14px/14px 'Roboto', sans-serif;
}

.address-box {
    box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.18);
    background-color: #ffffff;
    padding: 25px;
    border-radius: 11px;
    /*border: 1px solid #05979e;*/
    border: 2px solid #e8e8e8;
    min-height: 210px;
    position: relative;
    margin-bottom: 15px;
}

/*.checked-box.address-box:after {
    background: linear-gradient(to bottom, #6acad0 0, #1a666b 100%);
    color: #fff;
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
    height: 35px;
    width: 35px;
    font-size: 20px;
    line-height: 35px;
    position: absolute;
    right: 9px;
    top: 9px;
    text-align: center;
    border-radius: 50%;
}*/
input.radio--checkout {
  /*display: none;*/
  opacity: 0;
}

input.radio--checkout + label {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

input.radio--checkout:checked + label:before,
input.radio--checkout:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 23px;
    height: 23px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
input.radio--checkout:checked + label:after,
input.radio--checkout:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    /*background: #F87DA9;*/
    color: #25979e;
    content: "\f00c";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    top: 5px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
input.radio--checkout:not(:checked) + label:after{
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
input.radio--checkout:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.radio--checkout {
    /*position: absolute;*/
    /*top: 16px;
    right: 18px;*/
   /* z-index: 1;
    opacity: 0;*/
}

.checked-box.address-box {
    border: 2px solid #25979e;
}

.address-box:hover {
    box-shadow: none;
}

.checked-edit {
    position: absolute;
    bottom: 22px;
    right: 12px;
}

.edit {
    text-align: right;
}

.edit a {
    color: #212121;
    text-decoration: none;
    letter-spacing: 1px;
}

.add-address-box {
    box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.18);
    background-color: #ffffff;
    padding: 25px;
    border-radius: 11px;
    border: 1px solid #e8e8e8;
    min-height: 210px;
}

.add-address-box .title-head-cstm {
    margin: calc(210px - 160px);
    font-size: 20px;
    text-align: center;
    color: #777;
}

.add-address-box:hover {
    box-shadow: none;
}

.add-address-anchor {
    text-decoration: none!important;
}

.plus {
    padding-top: 3em;
    font-size: 20px;
    text-align: center;
    color: #777;
}

.add-address-text {
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

#address-form {
    border: 1px solid #fdf8f8;
}

.address-ttl {
    text-align: center;
    font-size: 24px;
    color: #777;
    padding-bottom: 2em;
}

.pnl-default {
    background-color: transparent;
    border-color: transparent;
}

.pnl-default>.pnl-hd {
    background-color: #333!important;
    border-color: #333!important;
    /*padding: 14px 15px;*/
    padding: 10px;
    height: 55px;
}

.checkout--title {
    float: left;
    height: 34px;
    margin-left: 10px;
    width: 80%;
    display: inline-block;
}

.checkout--number {
    width: 35px;
    height: 35px;
    background: linear-gradient(to bottom, #6acad0 0, #1a666b 100%);
    color: #fff;
    font: 400 17px/35px "Roboto";
    border-radius: 50%;
    float: left;
    text-align: center;
}

.pnl-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 5px 0;
}

.pnl-hd a {
    text-decoration: none;
}

.pnl-gp {
    margin-bottom: 0px;
}

.pnl-bdy {
    background-color: #f8f8f8;
}

.product-dtl p {
    font-size: 14px;
    color: #333;
}

.remove {
    width: auto;
}

.status {
    margin: 0;
    font-size: 15px;
    text-align: justify;
    padding: 4px 0px;
    color: #333;
}

.delivery-date {
    color: #333;
    font-weight: 600;
    margin: 0;
    font-size: 13px;
    text-align: justify;
    padding: 4px 0px;
}

.fnt-siz-16 {
    font-size: 16px;
    color: #777;
    padding-top: 10px;
}

.fnt-siz-16 strong {
    color: #828282;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 24px;
}

.summary-bg {
    background-color: #fff;
    padding-bottom: 2em;
}

.summary-table tbody tr td {
    border-top: none;
    font-size: 14px;
    color: #777;
}

.summary-table tbody tr td:last-child {
    text-align: right;
}

.summary-table tbody tr:last-child {
    border-top: 2px solid #f3f3f3;
    border-bottom: 2px solid #f3f3f3;
}

.summary-table tbody tr:last-child td:last-child {
    color: #333;
    font-size: 22px;
}


/*.summary-table thead tr th
{
    border-bottom: 1px solid #ccc;
    font-size: 18px;
    color: #ada9a9;
}*/

.order-sum {
    /*border-bottom: 1px solid #ccc;*/
    font-size: 18px;
    color: #333;
    padding-top: 1em;
    margin-bottom: 0px;
    padding-left: 10px;
}

.item {
    /*border-bottom: 1px solid #ccc;*/
    font-size: 14px;
    color: #333;
    font-weight: 400;
    text-align: right;
    padding-top: 20px;
    margin-bottom: 0px;
    padding-right: 10px;
}

.hr-align {
    margin-top: 7px;
    border-top: 2px solid #f3f3f3;
}

.pdt-dtl {
    color: #333;
    margin-bottom: 5px;
    font-size: 12px;
}

.pdt-count {
    float: right;
    padding-right: 14px;
}

#cart-image-details {
    border: none;
    padding: 5px;
    /*height: 170px;*/
    /*overflow-y: scroll;*/
    /*overflow-x:hidden;*/
}


/*     #cart-image-details::-webkit-scrollbar {
        width: 12px;
        height: 12px;
        }
         #cart-image-details::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background:#05979e;
        box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
        }
         #cart-image-details::-webkit-scrollbar-track {
        box-shadow: inset 0 0 10px #3c4242;
        border-radius: 10px;
        }
        #cart-image-details img {
            height: 80px;
        }
        */

.pdt-description {
    display: none;
    min-height: 80px;
}

.show-btn,
.show-btn:hover,
.show-btn:focus {
    width: auto;
    /* line-height: 24px; */
    /* height: 40px; */
    text-align: center;
    /* margin: 0 auto; */
    margin-top: 10px;
    cursor: pointer;
    /* border-radius: 5px; */
    color: #333;
    /* border: 1px solid rgb(178, 179, 179); */
    /* background-color: rgb(60, 66, 66); */
    font-size: 14px;
    letter-spacing: 0px;
    padding: 12px 19px 0px;
    outline: none;
    /* margin-left: 10px; */
    font-weight: 500;
    border-top: 2px solid #efefef;
}

.place-order {
    width: 80%;
}

.process-bg {
    padding: 0px 30px 0px;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
}


/*checkout css end*/


/*my order start*/

.sidebar-clr {
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
}

.sidebar {
    /*border: 1px solid #4d4d4dcc;*/
    border-bottom: 1px solid #dfdfdf;
}

.side-bdr-top {
    border-top: 1px solid #dfdfdf;
}

.side-align {
    background-color: #f9f9f9;
    /*padding: 10px 30px;*/
    padding: 0px;
}

.user-detail {
    font-size: 25px;
    color: #101920;
}

.user-detail i {
    font-size: 39px;
}

.order {
    padding: 13px 9px;
    color: #101920;
    position: relative;
    margin-bottom: 0px;
}

.order a {
    font-size: 16px;
    color: #101920;
    text-transform: capitalize;
    text-decoration: none;
    padding: 13px 30px;
}

.account-set {
    /*font-size: 20px;
    color: #ddd;
    margin-top:0px;*/
    margin-top: 0px;
    font-size: 12px;
    line-height: 1.7;
    background-color: #fff;
    padding: 15px 30px 5px;
    color: #999;
}

.account-list {
    padding-left: 15px;
}

.account-list li a {
    /*font-size: 15px;*/
    /*color: #bababa;*/
    text-transform: capitalize;
    text-decoration: none;
    line-height: 2;
    transition: all 0.5s;
    color: #101920;
    font-size: 16px;
}

.account-list li a:hover {
    transition: all 0.5s;
    padding-left: 10px;
    color: #00b3bc;
    font-weight: 500;
}

.account-list li {
    list-style-type: none;
    padding: 7px 30px;
}

.order-details {
    background-color: #fff;
    /*min-height: 200px;*/
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
    margin-bottom: 10px;
}

.odr-name {
    color: #333;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.odr-range {
    font-size: 15px;
    color: #aaa;
    /*padding-top: 10px;*/
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.odr-unt-price {
    padding-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.odr-total-price {
    padding-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
}

.page-title {
    font-size: 17px;
    color: #101920;
    text-transform: capitalize;
    /*padding-top: 10px;*/
    margin-bottom: 0px;
}

.title-bdr-align {
    padding: 21px 30px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
}

.order-dtl {
    color: #101920;
    font-size: 14px;
    line-height: 1.7;
}

.order-dtl strong {
    font-size: 12px;
    line-height: 1.7;
    color: #666;
}

.track-dtl {
    padding: 13px 30px;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 10px;
}

.order-dtl-track a {
    font-size: 17px;
    color: #d0d0d0;
    text-decoration: none;
    background-color: #2c2a2a;
    padding: 7px 10px;
    border-radius: 6px;
    text-transform: capitalize;
}

.user-header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    height: 40px;
    width: 40px;
    margin: auto;
    border-radius: 50%;
    background-color: #efefef;
    overflow: hidden;
}

.user-header img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-name {
    padding: 30px 15px 30px 90px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0px;
}

.sidebar-data {
    background-color: #fff;
    border-bottom: 1px solid #dfdfdf;
}

.active-page:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 23px;
    background-color: #05979e;
}

.cart-table thead tr th {
    border-bottom: none;
    color: #333;
    text-align: center;
}


/*my order end*/


/*my profile start*/

.usr-ccl {
    font-size: 27px;
}

.fnt-edit i {
    color: #777;
    text-decoration: none;
}

.pdn-14 {
    padding: 14px 30px;
}

.profile-ttl {
    font-size: 12px;
    line-height: 1.7;
    color: #666;
}

.profile-dtl {
    color: #101920;
    font-size: 16px;
}

.profile-pdn-top {
    padding-top: 2em;
}

.btn-change {
    padding: 5px 12px;
    text-transform: capitalize;
    margin-left: 10px;
    font-weight: 500;
    letter-spacing: 0px;
    background-color: #05979e;
    border: 1px solid #05979e;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
}

.profile-msg {
    font-size: 13px;
}

.profile-select {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.profile-select:focus {
    outline: 0px;
}


/*my profile end*/


/*manage address start*/

.address-edit a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.address-edit {
    text-align: right;
}


/*manage address end*/


/*password css start*/

.password-msg {
    font-size: 14px;
    color: #666;
    padding-top: 30px;
}

.confirm-btn {
    width: 50%!important;
    margin-bottom: 2em;
}

.pswd-frm label {
    color: #333;
    padding-bottom: 5px;
}


/*password css end*/

.check-out-tab {
    padding-top: 5em;
    padding-bottom: 2em;
}

.edit a:hover {
    color: #39abb1;
}

.address-edit span:hover a {
    color: #05979e;
}
.order-summery-table tbody > tr > td {
    vertical-align: middle;
}
.order-summery-table thead th{
    text-transform: uppercase;
    background: #f2f0f0;
    line-height: 30px !important;
}

@media screen and (max-width: 768px) {
    .mar-top-8 {
        margin-top: 38px;
    }
    .shopping-cart {
        padding-top: 10px;
    }
    #steps {
        margin: 34px auto;
        height: 100px;
        padding-top: 13px;
    }
    .check-out-tab {
        padding-top: 0em;
    }
    .pnl-title {
        font-size: 16px;
    }
    .add-address-box {
        margin-top: 10px;
    }
    .new-address {
        padding: 1em;
    }
    .address-ttl {
        padding-bottom: 1em;
    }
    .pwd-pdn-align {
        padding: 0px 27px;
    }
    .pdt-name-mbl,
    .pdt-range-mbl,
    .pdt-unt-price-mbl,
    .pdt-total-price {
        text-align: left;
        padding-top: 0px;
        margin-bottom: 4px;
        line-height: 1.5;
        padding-bottom: 4px;
    }
    .pdt-total-price {
        padding-top: 10px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }
    .cart-tbl-align {
        padding: 10px 0em;
    }
    .pdt-description {
        min-height: 130px;
    }
    #steps .step:after {
        min-width: 100px;
    }
    .order-bg-clr {
        background-color: #fff;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
        margin-bottom: 10px;
    }
}