/*======= Header =======*/
.nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.nav-aside {
    position: fixed;
    top: 0;
    left: 0;
    padding: 45px 30px;
    overflow: hidden;
    overflow-y: scroll;
    width: 285px;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: 0px -77px 46px rgba(0, 0, 0, 0.07);
    box-shadow: 0px -77px 46px rgba(0, 0, 0, 0.07);
    z-index: 9999;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.nav-aside::-webkit-scrollbar {
    width: 5px;
    background-color: #fff;
}

.nav-aside::-webkit-scrollbar-thumb {
    background: #4c3ec7;
    border-radius: 3px;
}

.nav-aside .site-logo {
    margin-bottom: 150px;
    text-align: center;
}

.nav-aside .site-logo .small-logo {
    display: none;
}

.nav-aside .main-menu li {
    display: block;
    margin-bottom: 35px;
}

.nav-aside .main-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: #222f5a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-aside .main-menu li span.icon {
    font-weight: 400;
    font-size: 28px;
    margin-right: 20px;
    line-height: 1;
}

.nav-aside .main-menu li a:hover {
    color: #4c3ec7;
}

.nav-toggole {
    background: transparent;
    border: 1px solid #222f5a;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9999;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    display: none;
}

.nav-toggole span span {
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: #222f5a;
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
}

.nav-toggole.active span span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateY(5px);
    -ms-transform: rotate(45deg) translateY(5px);
    transform: rotate(45deg) translateY(5px);
}
.nav-toggole.active span span:nth-child(2) {
    display: none;
}
.nav-toggole.active span span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(-5px);
    -ms-transform: rotate(-45deg) translateY(-5px);
    transform: rotate(-45deg) translateY(-5px);
}

.header-one .nav-toggole {
    position: fixed;
    top: 0;
    left: 0;
    border: none;
    border-radius: 0;
    background: #4c3ec7;
}

.header-one .nav-toggole span span {
    background: #fff;
}

.header-one .nav-toggole.active {
    left: 120px;
}

.header-two {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
}

.header-two .main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-two .main-menu a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222f5a;
    padding: 10px;
}

.header-two .main-menu a:hover {
    color: #4c3ec7;
}

.header-two .main-menu li {
    padding: 20px 10px;
}


header.sticky-header.sticky-on {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 9999;
    -webkit-animation: sticky 1.2s;
    animation: sticky 1.2s;
    visibility: visible;
    opacity: 1;
}

/*======= Breadcrumb =======*/
.breadcrumb-section {
    padding: 130px 0;
    position: relative;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-image: url(../img/breadcrumb.jpg);
    z-index: 2;
}

.breadcrumb-section::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    opacity: 0.6;
    background-color: #222;
}

.breadcrumb-section .page-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb-section .breadcrumb-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-section .breadcrumb-nav li {
    position: relative;
    padding: 0 15px;
    list-style: none;
}

.breadcrumb-section .breadcrumb-nav li:not(:last-child):before {
    position: absolute;
    right: -1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "|";
    font-size: 14px;
}

.breadcrumb-section .breadcrumb-nav li,
.breadcrumb-section .breadcrumb-nav li a {
    color: #fff;
}

/*Checkout Area style 
=============================================
*/

.checkout-area {
    position: relative;
    display: block;
    margin-top: -100px;
   
}

.checkout-area .shop-title-box h3 {
    position: relative;
    font-size: 24px;
    color: #282828;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.checkout-area .exisitng-customer {
    position: relative;
    display: block;
    background: #f8f7ff;
    padding: 20px 28px 21px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.checkout-area .exisitng-customer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
    background: #d3a971;
}

.checkout-area .exisitng-customer h5 {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.checkout-area .exisitng-customer h5 a {
    font-weight: 400;
    display: inline-block;
    padding-left: 15px;
    color: #d3a971;
}

.checkout-area .coupon {
    position: relative;
    display: block;
    background: #f8f7ff;
    padding: 20px 28px 21px;
    margin-bottom: 60px;
    border-radius: 5px;
}

.checkout-area .coupon:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    content: "";
    background: #007bff;
}

.checkout-area .coupon h5 {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.checkout-area .coupon h5 a {
    font-weight: 400;
    display: inline-block;
    padding-left: 15px;
    color: #d3a971;
}

.checkout-area form .field-label {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 15px;
    text-transform: capitalize;
}

.checkout-area form .gateway-details .field-label {
    margin: 0 0 4px;
}

.checkout-area form .field-input {
    margin-bottom: 25px;
}

.field-input.cross {
    position: relative;
}

.field-input.cross i.fa-times-circle {
    position: absolute;
    color: #000;
    right: 8px;
    top: 16px;
    cursor: pointer;
    display: none;
}

.field-input.cross.cross-show i.fa-times-circle {
    display: block;
}

.checkout-area form .gateway-details .field-input {
    margin-bottom: 0;
}

.checkout-area form .field-input input[type="text"],
.checkout-area form .field-input select {
    border: 1px solid #f0eef9;
    color: #848484;
    display: block;
    font-size: 16px;
    height: 48px;
    margin-bottom: 25px;
    padding: 0 15px;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout-area form .field-input input[type="text"]:focus {
    border: 1px solid #222;
}

.checkout-area form .field-input textarea {
    border: 1px solid #f0eef9;
    color: #848484;
    display: block;
    font-size: 16px;
    height: 121px;
    margin-bottom: 28px;
    padding: 10px 15px;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.checkout-area form .field-input textarea:focus {
    border-color: #d3a971;
}

.checkout-area .create-acc .checkbox {
    margin: 7px 0 0;
}

.checkout-area .create-acc .checkbox label {
    color: #282828;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
}

.checkout-area .create-acc .checkbox input {
    position: relative;
    top: 1px;
}

.checkout-area .shipping-info input[type="checkbox"] {
    cursor: pointer;
    display: inline-block;
    margin: 0 0 0 20px;
    position: relative;
    top: 0px;
    vertical-align: middle;
}

.checkout-area .cart-table tbody tr .qty .input-group-btn-vertical {
    display: none;
}

.checkout-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin {
    width: 50px;
}

.checkout-area .cart-table tbody tr .qty .input-group.bootstrap-touchspin .quantity-spinner {
    border-radius: 6px;
    background: transparent;
    text-align: center;
}

.checkout-area .bottom {
    position: relative;
    display: block;
    background: #fdfcfb;
    padding-top: 126px;
    padding-bottom: 130px;
    margin-top: 115px;
}

.checkout-area .table {
    overflow-x: auto;
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.checkout-area .table .cart-table {
    min-width: auto;
    width: 100%;
}

.cart-table .title p {
    margin-top: 1px;
    margin-bottom: 0px;
}

.cart-table .title h5 {
    margin-bottom: 7px;
    display: block;
}

.cart-table .title p strong {
    color: #000;
}

.cart-table .price.cart_price strong {
    color: #000;
    margin-right: 4px;
}

.cart-table .price.cart_price p {
    margin-bottom: 1px;
}

.checkout-area .table .cart-table .cart-header {
    position: relative;
    background: #fff;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    width: 100%;
    border: 1px solid #eaeaea;
}

.checkout-area .table .cart-table thead tr th {
    font-weight: 500;
    line-height: 24px;
    min-width: 110px;
    padding: 19px 30px 17px;
    border-top: none;
    border-bottom: none;
    font-size: 18px;
    color: #282828;
}

.checkout-area .table .cart-table thead tr th.product-column {
    padding-left: 30px;
    text-align: left;
}

.checkout-area .table .cart-table tbody tr {
    border-bottom: 1px solid #e8e6f4;
}

.checkout-area .table .cart-table tbody tr td {
    vertical-align: middle;
    min-width: 110px;
    max-width: 160px;
    padding: 30px 0;
    border-top: none;
    padding-left: 30px;
}

.checkout-area .table .cart-table tbody tr td.qty input {
    border-radius: 6px;
    background: transparent;
    text-align: center;
    height: 40px;
    width: 40px;
    border: 1px solid #ddd;
    margin-left: 20px;
    padding: 0;
}

.checkout-area .table .cart-table tbody tr td.price {
    font-size: 18px;
    font-weight: 500;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box {
    min-height: 70px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb a {
    display: block;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb img {
    display: block;
    max-width: 150px;
    border-radius: 6px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title,
.checkout-area .table .cart-table tbody tr .product-column .column-box .prod-thumb {
    display: table-cell;
    vertical-align: middle;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title {
    padding-left: 20px;
}

.checkout-area .table .cart-table tbody tr .product-column .column-box .product-title h3 {
    color: #282828;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

p.gateway-desc {
    background: #f1f1f1;
    font-size: 14px;
    padding: 10px 25px;
    margin-bottom: 20px;
    color: #212529;
}

.gateway-instruction {
    background: #f1f1f1;
    padding: 15px 30px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.gateway-details label {
    font-size: 14px;
    display: block;
    margin-bottom: 7px;
}

.cart-total-table {
    border: 1px solid #e8e6f4;
    border-radius: 6px;
    margin-bottom: 30px;
}

.cart-total-table li {
    border-bottom: 1px solid #e8e6f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
}

.checkout-area .cart-total-table i {
    font-size: 9px;
    position: relative;
    top: -3px;
}

.cart-total-table li:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #000;
}

.cart-total-table li:last-child span.col {
    position: relative;
    display: block;
    float: left;
    color: #111;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding: 10px 18px;
    width: 50%;
}

.cart-total-table li:last-child span.col.col-title {
    position: relative;
    display: block;
    float: left;
    border-right: 1px solid #e8e6f4;
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    padding: 0;
    width: 50%;
}

.cart-total .payment-options {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid #e8e6f4;
    padding: 23px 20px 35px;
    border-radius: 6px;
}

.cart-total .payment-options .option-block {
    margin-bottom: 14px;
}

.cart-total .payment-options .option-block .checkbox {
    margin: 0 0 5px;
}

.cart-total .payment-options .option-block .checkbox label {
    display: block;
    font-weight: 500;
    min-height: 20px;
    padding-left: 0px;
    margin: 0;
}

.cart-total .payment-options .option-block .checkbox label input {
    position: relative;
    top: 1px;
}

.cart-total .payment-options .option-block .checkbox label span {
    color: #282828;
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px;
}

.cart-total .payment-options .option-block .checkbox label span b {
    color: #222222;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    padding-left: 25px;
    text-decoration: underline;
}

.cart-total .payment-options .option-block .text {
    padding-left: 30px;
}

.cart-total .payment-options .option-block .text p {
    margin: 0;
    line-height: 28px;
}

.placeorder-button .main-btn {
    padding: 8px 30px;
    border-color: #007BFF;
    line-height: 28px;
    color: #0c0c0c;
    font-family: "Roboto", sans-serif;
}

.placeorder-button .main-btn:hover,
.placeorder-button .main-btn:focus {
    color: rgb(20, 20, 20);
    background-color: #ddd;
}

/*======= Footer =======*/
footer {
    padding: 125px 0;
    background-color: #f8f9fe;
}

footer .contact-email {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    color: #222f5a;
    line-height: 1;
}

footer .contact-email span {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

footer .social-links {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background-color: #1574f6;
    border-radius: 50%;
    margin-left: 20px;
}

footer .social-links a.facebook {
    background-color: #3d5a96;
}

footer .social-links a.twitter {
    background-color: #2aa3ef;
}

footer .social-links a.youtube {
    background-color: #f52929;
}

footer .social-links a.instagram {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#7024c4),
        color-stop(41.55%, #c21975),
        color-stop(70.22%, #c74c4d),
        to(#e09b3d)
    );
    background: -o-linear-gradient(
        #7024c4 0%,
        #c21975 41.55%,
        #c74c4d 70.22%,
        #e09b3d 100%
    );
    background: linear-gradient(
        #7024c4 0%,
        #c21975 41.55%,
        #c74c4d 70.22%,
        #e09b3d 100%
    );
}

footer .social-links a.behance {
    background-color: #105dfb;
}

footer .social-links a.dribbble {
    background-color: #db417c;
}
