input:focus,
textarea:focus,
select:focus {
    outline-style:none !important;
    box-shadow:none !important;
    border-color:transparent !important;
}
@-webkit-keyframes autofill {
    to {
        color: #666;
        background: transparent;
    }
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}
/* Order Form */
.order-form-container form img {
    vertical-align: middle;
}
.order-form-container form .parent_name,
.order-form-container form .parent_tel1,
.order-form-container form .parent_address,
.order-form-container form .parent_province,
.order-form-container form .parent_city,
.order-form-container form .parent_zip,
.order-form-container form .parent_email {
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    position: relative;
    margin: 0 0 8px;
    overflow: hidden;
}
.order-form-container form .parent_name.valid,
.order-form-container form .parent_tel1.valid,
.order-form-container form .parent_address.valid,
.order-form-container form .parent_province.valid,
.order-form-container form .parent_city.valid,
.order-form-container form .parent_zip.valid,
.order-form-container form .parent_email.valid {
    border-color: #3ebb01;
}
.order-form-container form .parent_name.invalid,
.order-form-container form .parent_tel1.invalid,
.order-form-container form .parent_address.invalid,
.order-form-container form .parent_province.invalid,
.order-form-container form .parent_city.invalid,
.order-form-container form .parent_zip.invalid,
.order-form-container form .parent_email.invalid {
    border-color: #e70000;
}

.order-form-container form span.select2-container.invalid{
    border-radius: 6px;
    border: 1px solid #e70000;
}
.order-form-container form span.select2-container.valid{
    border-radius: 6px;
    border: 1px solid #3ebb01;
}

.order-form-container .parent_city,
.order-form-container .parent_zip {
    width: 48%;
    float: left;
}
.order-form-container .parent_zip {
    float: right;
}
.order-form-container .parent_city input,
.order-form-container .parent_zip input {
    float: none;
    width: 100%;
}
.order-form-container form .parent_email,
.order-form-container form .parent_province {
    clear: both;
}

.order-form-container .price-container {
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    border-top: 0;
}
.order-form-container .price-container h6 {
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
}
.order-form-container .price-container span.total-old-price {
    text-decoration: line-through;
}
.order-form-container .price-container .total-discount {
    font-weight: 700;
    background: #0fadb7;
}
.order-form-container .price-container span {
    line-height: 30px;
}
.order-form-container .price-container span.bold {
    font-size: 16px;
    font-weight: bold
}
.price-container #total-row {
    border-top: 1px solid #cccccc;
    padding: 10px 0;
    overflow: hidden;
    font-weight: 700;
}
.order-form-container .order-total .pull-left {
    padding: 35px 0 0;
}
.order-form-container input[type=hidden]{
    height: 0;
    line-height: 0;
    width: 0;
}
.order-form-container input {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border: 0;
    line-height: 36px;
    height: 34px;
    font-size: 14px;
    transition: 0.6s all;
    z-index: 100;
    box-shadow: none;
    cursor: text;
}

.order-form-container input:focus {
    outline: none;
    border-color: #ff6ba7;
}
.order-form-container input.invalid {
    color: red;
}
.order-form-container select {
    border: 0;
    box-shadow: none;
    padding: 0 10px 0 44px;
    width: 100%;
    background: #fff;
    line-height: 36px;
    height: 34px;
    font-size: 13px;
    transition: 0.6s all;
}
.order-form-container select.invalid {
    border-color: red;
    color: red;
}
.order-form-container #standart select{
    padding: 0px 5px;
}
#loading {
    margin: 10px auto;
    max-width: 42px;
}
#loading img{
    width:50px;
}
.removeItem {
    cursor: pointer;
}
#privacyHolder {
    position: relative;
    font-size: 13px;
}
#privacyHolder.invalid {
    color: #ff0000;
}
#privacyHolder.invalid label::before {
    border-color: #ff0000;
}
#privacyHolder input {
    opacity: 0.001;
    margin: 0 0 -30px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    cursor: pointer;
}
#privacyHolder label {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 0 0 0 34px;
    transition: 0.5s all;
    cursor: pointer;
    -webkit-touch-callout: none; 
    -webkit-user-select: none; 
    -khtml-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
}
#privacyHolder label:before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    content: '';
    cursor: pointer;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: 0.5s all;
}
#privacyHolder input[type=checkbox]:checked + label:before {
    border-color: #42ca49;
}
#privacyHolder input[type=checkbox]:checked + label:after {
    position: absolute;
    content: '';
    border-right: 3px solid #42ca49;;
    border-top: 3px solid #42ca49;;
    height: 6px;
    left: 7px;
    top: 8px;
    width: 12px;
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    cursor: pointer;
    transition: 0.5s all;
}
#privacyHolder label.invalid p {
    color: red;
}
#privacyHolder label.invalid:before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    content: '';
    cursor: pointer;
    background: #fff;
    border: 2px solid red;
    border-radius: 4px;
    transition: 0.5s all;
}
#privacyHolder label p a {
    color: #0fadb7;
}
button#order-form-button {
    position: relative;
    display: inline-block;
    padding: 18px 20px;
    line-height: 18px;
    font-size: 18px;
    box-shadow: none;
    border: 0;
    color: #fff;
    font-family: 'Lato','Roboto', Arial, sans-serif, Arial, sans-serif;
    font-weight: 700;
    background: #d81841;
    /*max-width: calc(100% - 10px);*/
    width: 100%;
    margin: 0 auto;
    transition: 0.6s all;
    cursor: pointer;
    -webkit-animation: anime 15s ease infinite;
    -moz-animation: anime 15s ease infinite;
    -o-animation: anime 15s ease infinite;
    animation: anime 15s ease infinite;
}
.order-form-container button:hover,
.order-form-container button:active {
    background: #d81841;

}
#btn-cart {
    padding: 10px;
    width: 60px;
    height: 60px;
    background: #e53a67 url("../images/cart/icon_basket.png") center center no-repeat;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    overflow: hidden;
}
#btn-cart span#basket-counter {
    border-radius: 100%;
    background: #70021f;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    padding: 3px 8px;
    left: 5px;
    position: absolute;
}

#form-messages{
    padding:0;
}

#form-messages .shipping-header{
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    /*background: #ffc821;*/
    background: #ececec;
    padding: 10px;
    color: #000;
    display: block;
    margin: -10px -10px 10px;
    font-size: 15px;
}

.submit-btn:disabled,
.submit-btn[disabled]{
    background-color: #cccccc !important;
}

.order-form-container .price-container {
    margin: 0 auto;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    border-top: 0;
}

#cart-holder, #delivery-row, #total-row{
    display: block;
    position: relative;
    width: 100%;
    font-size: 15px;
}
#cart-holder{
    padding:0;
}
#cart-holder h4 {
    padding: 10px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.cart-row{
    margin:0;
    /*margin:5px 0;*/

}

#privacyHolder.valid{
    border:none;
    color:green;
}

ul.nav.nav-tabs{
    display: flex;
}
ul.nav.nav-tabs li{
    display: flex;
    width: auto !important;
}
ul.nav.nav-tabs li a{
    margin-right: 2px;
    padding: 10px 15px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 10px 15px 8px;
    font-size: 12px;
    color: #fff;
    background: #129bd8;;
}
ul.nav.nav-tabs li.active a {
    background: #083448;
    border-bottom: 2px solid #129bd8;
}
.tab-content{
    border: 2px solid #e2e2e2;
    padding:10px !important;
}

form.order-form{
    padding:0;
}

form.order-form .panel-group{
    margin-bottom: 5px;
}
form.order-form .panel-group:last-of-type{
    margin-bottom: 10px;
}
form.order-form .panel-group .panel-title{
    font-size: 13px;
}
form.order-form .panel-group .panel-title a:hover{
    text-decoration: none;
}
form.order-form .panel-group .panel-title a:focus{
    text-decoration: none;
}
form.order-form .panel-group .panel-title a:before{
    margin: 0 5px 0 0;
    content:"▶ ";
    display: inline-block;
    transform: rotate(-90deg);
}
form.order-form .panel-group .panel-title a.collapsed:before {
    transform: rotate(90deg);
}
form.order-form .panel-group .panel-default > .panel-heading{
    background-color: #def4ff;
    padding: 0;
}
form.order-form .panel-group .panel-default > .panel-heading a {
    display: block;
    padding: 0px 15px;
    font-size: 12px;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 34px;
}
form.order-form div[class^="parent_"] { 
    margin: 5px 0;
}
form.order-form .panel-body p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 20px;
}
form.order-form #ship_desc_standart0 .panel-footer {
    padding: 0;
}
.price-container{
    display: block;
    color: #fff;
    border-radius: 6px;
    background: none;
}
.cart-header .shopping-cart-icon{
    width: 16px;
    margin-right: 10px;
}

.form-holder{
}
.form-holder .panel {
    display: block;
    padding: 0;
}
.form-holder .panel p {
    margin: 0 0 10px;
    font-family: Arial, sans-serif;
    font-size: 14px !important;
    line-height: 18px;
}
.cart-row-item-holder{
    background: #ffffff;    
    color: #156592;
    padding: 10px;
    border-radius: 3px;
    box-shadow: 1px 1px #cccccc;
    display: inline-block;
    width: 100%;
    font-size: 15px;
    margin-bottom: 5px;
}
.cart-row-item-holder span i {
    color: red;
}
.cart-row-item-holder #total-row {
    font-weight: 900;
}
/*--------------------
Shop Card
---------------------*/
.shoppingcart {
    background: #fff;
    border-radius: 4px;
    padding: 0 30px 20px;
}
.shoppingcart .product {
    position: relative;
    z-index: 10;
    border-top: 1px solid #e5e5e5;
}
.shoppingcart .shop-card {
    border-top: 1px solid transparent; 
    border-bottom: 1px solid transparent; 
    border-radius: 0;
    position: relative;
    background: none;
    margin: 0;
    padding: 12px 20px 12px 55px;
    position: relative;
    box-shadow: none;
    overflow: hidden;
}
.shoppingcart .product:nth-child(2) {
    z-index: 20;
}
.shoppingcart .product:nth-child(2) .shop-card:before {
    position: absolute;
    content: '';
    width: 39px;
    height: 100%;
    background: url(../images/badge.png) no-repeat;
    background-size: auto;
    z-index: 50;
    background-size: 100% auto;
}
.shoppingcart .shop-card .title {
    position: relative;
    padding: 0 0 0 30px;
    text-align: left;
    font-weight: 400;
    float: left;
    font-size:  16px;
    line-height: 22px;
    text-align: left;
}
.shoppingcart .shop-card .price {
    color: #FF3100;
    font-size: 22px;
    font-weight: 900;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    float: right;
    width: auto;
    text-align: right;
}  
.shoppingcart .shop-card .title:before {
    border-radius: 100px;
    position: absolute;
    top: 2px;
    left: 0;
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
}
.shoppingcart .product.selected .shop-card .title:after {
    border-radius: 100px;
    position: absolute;
    top: 7px;
    left: 5px;
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
}
.shoppingcart .shop-card .title .red-text {
    font-weight: 700;
}
.shoppingcart .selected .shop-card {
    box-shadow: 0 0 4px #ccc;
    border-top: 1px solid #7a7a7a; 
    border-bottom: 1px solid #7a7a7a; 
    background: #fcc856;
}
.accessories-parent{
    padding: 15px;
}
.accessories-card {
    position: relative;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    z-index: 2;
}
.text-white {
    color: #fff;
}
.accessories #add{
    background: #40a9de !important;
}
.accessories #add:hover{
    background: #7fd0f9 !important;
    transition: all .3s;
}
.accessories-wrapper{
    background: white;
    margin: 30px 0 0;
    border-radius: 5px;
}
.accessories-wrapper h3{
    margin: 0;
    padding: 10px;
    background: #ececec;
    /*background: #ffc84d;*/
    border-top-left-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    border-top-right-radius: 5px;
    margin-bottom: 10px;
}
.accessories-wrapper .grid-container {
    padding: 10px;
}
.accessories-wrapper .shop-card{
    background: #ffffff;
}
.accessories-wrapper .shop-card .title{
    font-size: 16px;
    /*font-size: 4vw;*/
}
.accessories-wrapper .shop-card .desc{
    font-size:14px;
    /*font-size: 3.5vw;*/
}
.accessories-wrapper .shop-card .slider figure img{
    width: auto;
    height:150px;
}
.accessories-wrapper .shop-card .cta .price{
    width: 100%
}
.accessories-wrapper .shop-card .cta{
    padding:0;
}
.accessories-wrapper .shop-card .cta .btn.btnselect{
    width: 100%
}
.accessories-wrapper .shop-card .cta .btn i {
    transition: 0.4s all;
}
.accessories-wrapper .shop-card .cta button.btn::hover{
    background:#40a9de;
    color:#fff;
}
.accessories-wrapper .shop-card figure img{
    margin: 0 auto;
    max-width: 100%;
}
#delivery-information {
    margin: 5px 10px;
    font-size: 14px !important;
    text-align: center;
    color: #fff;
}
.shop-card {
    position: relative;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 5px;
    padding: 10px 5px;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    height: 100%;
}

.accessories-wrapper .shop-card {

    border: 1px solid #e5e5e5;
    box-shadow: none;
}
.shop-card figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    outline: none !important;
    max-height: 140px;
}
.shop-card figure img {
    max-width: 100%;
    max-height: 140px;
    display: block;
}
.shop-card span.numq {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 36px;
    color: #23211f;
    margin-bottom: 5px;
}
.shop-card .desc {
    font-size: 17px;
    opacity: .8;
    margin-bottom: 3px;
}
.shop-card .cta::after {
    content: '';
    display: table;
    clear: both;
}
.shop-card .price {
    color: #FF3100;
    font-size: 22px;
    font-weight: 900;
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    width: 100%;
    text-align: center;
}    
.shop-card .price .product-old-price{
    text-decoration: line-through;
    display: inline-block;
    font-size: 15px;
    font-weight: 300 !important;
    color: #000;
}
.shop-card .price .product-new-price{
    display: inline-block;
    margin: 0 0 0 20px;
    font-size: 18px !important;
    font-weight: 700;
    color: #375c95;
}
.shop-card .btn{
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: #15517a;
    padding: 12px 18px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    line-height: .95;
    border: none;
    background: none;
    outline: none;
    border: 1px solid #16517b;
    border-radius: 20px;
    overflow: hidden;
}
.shop-card .btn .bg {
    width: 101%;
    height: 101%;
    display: block !important;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: -webkit-linear-gradient(315deg, #a61322, #d33f34);
    background: linear-gradient(135deg, #a61322, #d33f34);
}
.shop-card .btn:hover .bg {
    opacity: 1;
}
.product.size {
    font-size: 0;
    color: #e7bb45;
    letter-spacing: 0;
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
}

.product.hover {
    -webkit-transition: .2s linear;
    -moz-transition: .2s linear;
    -ms-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
    -webkit-transform-origin: 108px 24px;
    -moz-transform-origin: 108px 24px;
    -o-transform-origin: 108px 24px;
    -ms-transform-origin: 108px 24px;
    transform-origin: 108px 24px;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
/*--------------------
Slick Dots
---------------------*/
.slick-dots {
    bottom: -30px;
}
.slick-dots a {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
}
.slick-dots span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.slick-dots circle {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-dasharray: 39 39;
    stroke-dashoffset: 39;
    -webkit-transition: all .9s ease-in-out;
    transition: all .9s ease-in-out;
    -webkit-transition: stroke-dashoffset 0.5s;
    transition: stroke-dashoffset 0.5s;
}
.slick-dots .slick-active circle {
    stroke-dashoffset: 0;
}

/*--------------------
Background
--------------------*/
.bg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(75deg, #d33f34 50%, #a61322 50.1%);
    background: linear-gradient(15deg, #d33f34 50%, #a61322 50.1%);
    z-index: 1;
    display: none;
}
.add-cart-success{
    border: 1px solid #70bd1b !important;
    color:#fff !important;
    background: #86e023 !important;
}

a#btn-cart{
    transition: all .3s;
}
a#btn-cart.bounce-up{
    transform: translateY(-40px);
}
#PackageContainAccordion{
    text-align: center;
}
#PackageContainAccordion h4.panel-title{
    display: block;
}
#PackageContainAccordion h4.panel-title a{
    width: 100%;
    display: inline-block;    
    font-weight: bold;
}
#PackageContainAccordion a, #PackageContainAccordion a::hover, #PackageContainAccordion a::focus{
    text-decoration: none !important;
}
#form-messages .nav-tabs > li.active > a{
    color:#fff !important;
}
#form-messages {
    padding: 10px;
    background: whitesmoke;
    display: block;
    margin-top: 15px;
    border-radius: 6px;
}
.cart-row{
    padding: 5px 10px !important;
    overflow: hidden;
    display: block;
    width: 100%;
}
.mobile-show {
    display: none;
}

@media(max-width: 801px){
    .shoppingcart {
        padding: 0;
        overflow: hidden;
    }
    .shoppingcart .shop-card {
        padding: 12px 10px;
    }
    .shoppingcart .shop-card .title .red-text {
        display: block;
    }
    .shoppingcart .shop-card .title:before {
        
    }
    .shoppingcart .selected .shop-card .title:after {
        
    }
    .shop-card .title {
        font-size: 12px;
    }
    .shop-card span.numq {
        font-size: 18px;
    }
    .shoppingcart .product:nth-child(1) .shop-card {
        padding: 6px 10px;
    }
    .shoppingcart .product:nth-child(1) .shop-card .title {
        line-height: 34px;
    }
    .shoppingcart .product:nth-child(1) .shop-card .title:before {
        top: 7px;
    }
    .shoppingcart .product.selected:nth-child(1) .shop-card .title:after,
    .shoppingcart .product:nth-child(1) .shop-card .title:after {
        top: 12px;
    }
    .shoppingcart .product .shop-card .title:before {
        top: 12px;
    }
    .shoppingcart .product.selected .shop-card .title:after,
    .shoppingcart .product .shop-card .title:after {
        top: 17px;
    }
    .shoppingcart .product .shop-card {
        padding: 6px 10px;
    }
    .shoppingcart .product:nth-child(2) .shop-card::before {
        display: none;
    }
    .shoppingcart .shop-card .price {
        position: relative;
    }
    .shoppingcart .product:nth-child(2) .mobile-show {
        position: relative;
        display: block;
        height: 40px;        
    }
    .shoppingcart .product:nth-child(2) .mobile-show img {
        position: absolute;
        top: 0;
        left: -39px;
        max-width: 39px;
    }
    .shop-card .price .product-old-price,
    .shop-card .price .product-new-price {
        display: block;
    }
    .shop-card .price .product-old-price {
        margin: 5px 0 0;
    }
}

.select2-result-repository{
    font-size: 14px;
    padding:5px;
    border: 1px solid #40a9de;
}
.select2-result-repository:hover{
    border:1px solid yellow;
}