﻿
.aod-animated {
  -webkit-animation-duration: 1s !important;
  animation-duration: 1s !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.aod-animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fly_bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes fly_bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.fly_bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: fly_bounceIn;
  animation-name: fly_bounceIn;
}

@-webkit-keyframes fly_shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

@keyframes fly_shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
}

.fly_shake {
	-webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: fly_shake;
  animation-name: fly_shake;
}

@keyframes fly_swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.fly_swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: fly_swing;
  animation-name: fly_swing;
}
@-webkit-keyframes fly_pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes fly_pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.fly_pulse {
  -webkit-animation-name: fly_pulse;
  animation-name: fly_pulse;
}

@-webkit-keyframes fly_wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fly_wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fly_wobble {
  -webkit-animation-name: fly_wobble;
  animation-name: fly_wobble;
}

@-webkit-keyframes fly_tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes fly_tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.fly_tada {
  -webkit-animation-name: fly_tada;
  animation-name: fly_tada;
}


@-webkit-keyframes boxpulse {to {box-shadow: 0 0 0 45px rgba(90, 153, 212, 0);}}
@-moz-keyframes boxpulse {to {box-shadow: 0 0 0 45px rgba(90, 153, 212, 0);}}
@-ms-keyframes boxpulse {to {box-shadow: 0 0 0 45px rgba(90, 153, 212, 0);}}
@keyframes boxpulse {to {box-shadow: 0 0 0 45px rgba(90, 153, 212, 0);}}

.boxpulse{
box-shadow: 0 0 0 rgba(204,204,204,0.8);
-webkit-animation: boxpulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
-moz-animation: boxpulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
-ms-animation: boxpulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
animation: boxpulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
 
}


/*body.aod-flycart-open, html.aod-flycart-open {
    overflow: hidden !important;
}*/

   .aod_flying_cart{
        position:fixed;
        white-space:normal;
        top:0px;
        z-index: 9999999;
        min-width: 400px;
        width: 30%;
        padding: 20px 30px 0 30px;
        right: -100%;
        background: #ffffff;
        height: 100%;
        border-left: 1px solid #faf3ed;
        box-shadow:-3px 0px 11px 0px rgba(0,0,0,0.1);
    }
    .aod-product-row {
        width:100% !important;
        margin: 2px auto;
        text-align: center;
        margin-bottom: 15px;
        clear: both;
        position: relative;
        border-bottom: 1px solid #f8f8f8;
        padding-bottom: 17px;
        display: inline-block;
		 font-family: inherit;
    }
    .aod-product-row.aod-empty-cart {
        border-bottom: none;
        color: #000;
        padding-bottom: 0px;
        font-family: inherit;
        font-size: 14px;
    }
    .aod-main-heading{
        text-align: left;
        margin-top: 5px;
        margin-bottom: 0;
        text-transform: uppercase;
        letter-spacing: 0;
        font-family: arial;
        font-size:15px;
        font-weight:600;
        color: #000;
        font-family: inherit;
		padding-left: 15px;
		padding-top:0px;
		padding-bottom:0px;
		line-height: 16px;
    }
	.aod-main-heading svg {
		width: 16px;
        position: absolute;
        top: -9px;
        left: -19px;
	
	}
    .aod-product-row .aod-product-image{
        float: left;
        width: 23%;
    }
    .aod-product-row .aod-info-right-area{
        float: left;
        width: 46%;
        padding-left: 10px;
    }
    .aod-product-row .aod-product-name {
        font-weight: 600;
        line-height: 18px;
        margin-top: 0px;
        text-align: left;
         font-family: inherit;
    }
    .aod-total-text{
        float: left;
        font-size: 15px;
        line-height: 22px;
        font-weight: 600;
        font-family: arial;
        text-transform: uppercase;
        padding-top: 2px;
         font-family: inherit;
    }
    .aod-total-amount{
        float: right;
        font-size: 15px;
        line-height: 20px;
        font-family: arial;
        margin-top: 5px;
         font-family: inherit;
    }
    .aod-cart-total-panel{
        float: left;
        width: 87%;
        position: absolute;
        bottom:20px;
        border-top: none;
        padding-top: 15px;
        margin: 0 auto;
        font-family: inherit;
        padding-top: 20px;
		z-index:9999;
    }
    
    .aod-total-price{
        margin: 10px auto 0px;
        color: #000;
        font-weight: 600;
        float: left;
        width: 100%;
        font-weight: 600;
        position: relative;
        top: -10px;
         font-family: inherit;
        font-size: 18px;
    }
    .aod-product-name a {
        text-transform: capitalize;
        font-size: 13px;
        line-height: 14px;
        font-weight: 600;
        opacity: 1;
        word-wrap: break-word;
        color: #000;
         font-family: inherit;
    }
    .aod-remove-from-cart{
        padding: 5px 5px 5px 10px;
        color: #5c5c5c;
        margin: 1% 10px;
        text-align: center;
        float: right;
    }
    .aod-cart-container{
        padding: 6px 0;
        overflow-y:auto!important;
        height: auto;
		max-height:calc(100vh - 265px);
        padding-right:10px;
    }
    
	.aod_flying_cart.type_drawer.ship_progress.discount_yes.cartnotes_yes .aod-cart-container{
	max-height: calc(100vh - 365px);
	}
	
	.aod_flying_cart.type_drawer.ship_progress.discount_yes.agree_yes .aod-cart-container{
	max-height: calc(100vh - 365px);
	}
	
	.aod_flying_cart.type_drawer.ship_progress.discount_yes.cartnotes_yes.agree_yes .aod-cart-container {
    max-height: calc(100vh - 420px);
}
   
    .aod-product-price {
        float: right;
        font-size: 14px;
        margin-left: 0px;
        font-weight: bold;
        padding: 0px;
        font-family: inherit;
        color: #000;
    }
    .aod-product-image img{
        padding: 5px;
        border: none;
        padding-left:0px;
		width:100%;
		max-width:100%;
    }
    .aod-quantity-of-product{
        font-family: arial;
        float: left;
        font-size: 13px;
        font-weight: bold;
    }
    .aod-quantity-container{
        width: 100%;
        margin-bottom: 20px;
        margin-top: 5px;
    }
    .aod-view-cart-button{
        font-size: 11px;
		font-weight: 500;
		padding: 2px 0px 0;
		border: 0px;
		text-transform: capitalize;
		opacity: 1;
		margin: 0 auto;
		position: relative;
		letter-spacing: 0.045em;
		border-radius: 0px;
		text-decoration: underline;
		font-family: inherit;
		text-align: center;
		display: block;	
		outline: none;
        top: 4px;
    }
    .aod_flying_cart hr{
        border:none;
        border-bottom: 1px solid #cccccc;
        margin: 10px auto 12px;
        width:100%;
        border-top: none;
    }
    img.cart-quantity-image{
        position: relative;
        top: 3px;
        margin-right: 4px;
        vertical-align: inherit;
    }
    .aod-fast-checkout{
        background:#34b0b0;
        font-weight: 600;
        color:#fff;
        opacity: 1;
        letter-spacing: 0.035em;
        padding: 10px 0px;
        font-size: 14px;
        font-family: inherit;
        border: 1px solid #34b0b0;
        display:block;
        clear:both;
        text-decoration:none;
        text-transform: uppercase;
        text-align: center;
		width:100%!important;
		appearance: none;
		-moz-appearance: none;
        -webkit-appearance: none;
	    border-radius:0px;
      }
    
    .aod-variant-name {
        font-size: 10px;
        color: #4444449c;
        display: inline-block;
        clear: both;
        font-family: inherit;
    }
    .aod-shop-button-empty {
        font-size: 13px;
        padding: 5px 25px;
        margin: 0 auto;
        font-family: inherit;
        font-weight: 600;
        letter-spacing: 0.5px;
        opacity: 1;
        line-height: normal;
        text-align: center;
        display: inline-block;
        width: 100%;
        color: #5454FF;
    }
    .aod-shop-button-empty:hover {
        color: #5454FF;
    }
    .aod-fluying-cart-hidden{
        right:-100%;
    }
    .aod-fluying-cart-visible{
        right: 0px;
        transition: all 0.5s ease-in-out 0s;
    }
    .aod-info-right-area #aod-quantity-updater {
		color:#000;
        border-radius: 0px !important;
        border: 1px solid #090909 !important;
        font-size: 12px;
        outline: none;
        text-align: center;
        padding: 0px;
        width: 85px;
        height: 28px;
        margin: 0;
        font-family: inherit;
		background: #fff;
		max-height: 28px !important;
        min-height: 28px !important;
       
    }
    .aod-add-quantity{
        border:none;
        border-radius:0px;
        outline:none;
        margin:0px;
        padding:0px 4px;
        line-height:18px;
        font-size:16px;
        position:absolute;
        right:0px;
        top:0px;
       width: 25px;
        height:28px;
        font-weight:600;
        background:transparent;
		border-left: 1px solid #090909;
		max-height: 28px !important;
        min-height: 28px !important;
    }
    .aod-sub-quantity {
        border: none;
        border-radius: 0px;
        outline: none;
        margin: 0px;
        padding: 0px 2px;
        line-height: 21px;
        font-size: 20px;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 25px;
        height: 28px;
        font-weight: 600;
        background: transparent;
		border-right: 1px solid #090909;
        /*padding-bottom: 24px;*/
		z-index: 9999;
    }
    .aod_flying_cart .aod-cart-container::-webkit-scrollbar {
        width: 5px;
        border-radius:10px;
    }
    .aod_flying_cart .aod-cart-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius:10px;

    }
    .aod_flying_cart .aod-cart-container::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius:10px;

    }
    .aod_flying_cart .aod-cart-container::-webkit-scrollbar-thumb:hover {
        background: #555;
        border-radius:10px;
    }
   
    .aod-custom-cart-message {
        text-align: center;
        display: block;
        font-size: 12px;
        color: #000;
        padding-bottom: 10px;
         font-family: inherit;
        font-weight: 400;
		line-height: 13px;
    }
	.aod-q-box
	{
width: auto;
float: left;
text-align: left;
margin: 5px 0px 0px;
position: relative;
	}
  
  .aod-extraa-ammount {
    width: 100%;
    float: left;
}

  .aod-extraa-total-text{
        float: left;
        font-size: 11px;
        line-height: 12px;
        font-weight: 600;
        font-family: arial;
        text-transform: capitalize;
        padding-top: 2px;
       font-family: inherit;
         color: #f45757;
    }
    .aod-extraa-total-amount{
        float: right;
        font-size: 11px;
        line-height: 12px;
        font-family: arial;
        margin-top: 5px;
         font-family: inherit;
       color: #f45757;
    }
  
  .aod-product-price strike {
    font-size: 11px;
    position: relative;
    top: -3px;
    color: #000;
}

  .aod-product-price.aod-reduced-price
  {
    color: #f45757;
    font-size: 18px;
  }
  .aod_close_cart {
    float: right;
    cursor: pointer;
    z-index: 9999999;
    cursor: pointer;
}
  .aod_close_cart svg{
  width: 18px !important;
  height: 18px !important;
  position: absolute;
  right: 28px;
  top: 9px;
   z-index: 9999999;
    cursor: pointer;
  }
  
.aod_cart_note {

    width: 100%;

}
  .aod_cart_note input {
    width: 100%;
    font-size: 12px;
    height: 35px;
    padding: 0px 9px;
    color: #000;
    border-radius: 2px;
    border: 1px solid #949494;
    margin-bottom: 10px;

}
.aod_variant_name {

    font-size: 10px;
    font-family: inherit;
    padding: 0;

}

.aod_left_panel_fly {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 70%;
    height: 100%;
    z-index: 999999999999;
	display:none;
	max-width: calc(100% - 400px);
}
.aod_left_panel_fly.overlay_active_aod{
display:block;
}
.aod_cart_form {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* Start type  popup */
.flying_pop_container{
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
z-index: 99999998;
cursor: pointer;
background: rgba(0,0,0,0.5);
display:none;
}
.flying_pop_container.aod-pop-visible{
visibility:visible;
}
.flying_pop_container .aod_flying_cart {
    position: fixed;
    white-space: normal;
    z-index: 9999999;
    min-width: 600px;
    width: 650px;
    padding: 20px 30px 10px 30px;
    background: #ffffff;
	height:auto;
	min-height: 425px;
    border-left: 1px solid #faf3ed;
    box-shadow: -3px 0px 11px 0px rgba(0,0,0,0.1);
    left: 0!important;
    right: 0!important;
    margin: 0px auto;
	top: 50%;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	max-height: 660px;
}
.flying_pop_container .aod_flying_cart .aod-cart-total-panel {
    float: left;
    width: 100%;
    position: relative;
	bottom:5px;
}

.flying_pop_container .aod_flying_cart .aod-cart-container {
   height:auto;
   padding: 6px 0;
   max-height:calc(100vh - 375px);

}

.flying_pop_container .aod_flying_cart.ship_progress.discount_yes.cartnotes_yes .aod-cart-container {
   max-height: calc(100vh - 455px);
}

.flying_pop_container .aod_flying_cart.ship_progress.discount_yes.agree_yes .aod-cart-container {
   max-height: calc(100vh - 455px);
}

 .flying_pop_container .aod_flying_cart.ship_progress.discount_yes.cartnotes_yes.agree_yes .aod-cart-container {
   max-height: calc(100vh - 475px);
   }


/* End type popup */
.aod_cart_discount {
    width: 100%;
}
.discountHeading {
    font-size: 11px;
	text-align: left;
	color: #000;
	padding-bottom: 5px;
	font-family: inherit;
	font-weight: 400;
	margin:0;
	float:left;
	width:100%;
}
.aod_cart_discount_inp {

    width: 100%;
    padding: 5px 10px;
    height: 30px;
    border-radius: 0;
    border: 1px dashed #000;
    font-size: 14px;
    margin: 0;
	margin-bottom: 10px;

}
.newly_added .aod_cart_discount_inp {
    width: 65%;
    padding: 5px 10px;
    height: 29px;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 14px;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 5px;
    float: left;
	min-height: 29px;
}
.aod_apply_form svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    margin: 0 auto;
}

.newly_added .aod_apply_discount {

    font-size: 13px;
    padding: 4px 5px;
    width: 32%;
    float: left;
    border-radius: 0;
    cursor: pointer;
	min-height:29px;
}
.discount_price svg {
    display: none;
}
.apply_clicked svg {
    display: block!important;
}

.discount_response {
    float: left;
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 0;

}

.discount_label b.discount_label_a {
    font-weight: 600;
    font-size: 13px;
	margin-right: 15px;
}

.discount_label .discount_label_code {
    font-size: 13px;
    /*background: rgba(113,113,113,0.11);*/
    color: #000;
    padding: 0px;
	font-weight: bold;

}
.aod_apply_form {
    float: left;
    width: 100%;
}
.discount_error {
    float: left;
    font-size: 10px;
    margin: 0;
    margin-bottom: 0px;
    padding: 0;
	color: red;
}
.aod_remove_code svg {

    margin-left: 22px;
    position: relative;
    top: 1px;
	display:none;

}
.discount_price {
    font-size: 13px;
}

#shipping_progress_main {
    width: 100%;
    background-color: #f8f8f8;
    margin-bottom: 5px;
}
#shipping_bar_inner {
    width: 1%;
    height: 15px;
    background-color: #50B83C;
}

.aod-shipping-bar-msg {
    text-align: center;
    display: block;
    font-size: 11px;
    color: #000;
    padding-bottom: 7px;
    font-family: inherit;
    font-weight: 400;
}

.aod_flying_cart.upsell_yes{       
       overflow-y:scroll;
    }
	
.aod_upsell_main_panel {
    float: left;
    width: 100%;
	margin-top: 10px;
	margin-bottom: 15px;
    
}
.aod_upsell_slider.owl-loaded {
    padding-top: 15px;
	padding-bottom: 15px;
	background:#f8f8f8;
    padding: 10px;
    border-radius: 10px;
	box-shadow: 2px 2px 6px #ebe4e4;
}
.aod_upsell_panel {
    float: left;
    width: 100%;
}
.aod_proimg {
    width: 15%;
    float: left;
}
.aod_pro_rightpanel {
    float: right;
    width: 80%;
}
	
	.aod_pro_rightpanel h5 {
    padding: 0;
    margin: 0;
    margin-bottom: 5px;
    width: 100%;
	font-size: 14px;
}
.aod_pro_price {
    width: 100%;
    display: block;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.upsell_options {
    width: 60%;
    font-size: 13px;
    padding: 0px 5px!important;
    height: 25px!important;
    margin: 4px 0px;
	line-height: 25px!important;
}
.aod_upsell_add_product {
    padding: 0px 5px!important;
    margin: 0px 2px;
    display: inline-block;
    font-size: 12px;
    height: 24px!important;
	line-height: 24px;
}
.aod_upsell_slider:nth-of-type(2), .aod_upsell_slider:nth-of-type(3), .aod_upsell_slider:nth-of-type(4) {
    display: none !important;
}

.aod_upsell_main_panel .owl-prev {
    position: absolute;
    top: 11%;
    left: -20px;
	font-size: 40px !important;
	outline:none;
}
.aod_upsell_main_panel .owl-next {
    position: absolute;
    right: -20px;
    top: 11%;
    font-size: 40px !important;
	outline:none;
}

.aod_upsell_main_panel .owl-dots {
    display: none;
}

.aod_flying_cart.upsell_yes.greaterthentwo .aod-cart-total-panel {
    width: 100%!important;
    position: unset!important;
}


    @media (min-width: 320px)  and (max-width: 359px){

        .aod-cart-total-panel {
            width: 88%;
        }
    }

    @media (min-width: 360px)  and (max-width: 370px){

        .aod-cart-total-panel {
            width: 88.5%;
        }

    }

    @media (min-width: 371px)  and (max-width: 375px){

        .aod-cart-total-panel {
            width: 89%;
        }

    }



    @media (min-width: 376px)  and (max-width: 400px){

        .aod-cart-total-panel {
            width: 89.1%;
        }


    }

    @media (min-width: 401px)  and (max-width: 500px){

        .aod-cart-total-panel {
            width: 90%;
        }

    }


    @media (min-width: 501px)  and (max-width: 600px){

        .aod-cart-total-panel {
            width: 91%;
        }

    }

    @media (min-width: 601px)  and (max-width: 700px){

        .aod-cart-total-panel {
            width: 90%;
        }

    }

    @media (min-width: 701px)  and (max-width: 768px){

        .aod-cart-total-panel {
            width: 90%;
        }


    }

    @media (min-width: 769px)  and (max-width: 1024px){

        .aod-cart-total-panel {
            width: 90%;
        }

    }

    @media (max-width: 767px){
        .aod_flying_cart{
            min-width: auto;
            width: 93.5%;
            padding: 20px 15px 0 15px;
        }
        .aod-cart-container {
            height: auto;
			max-height:calc(100vh - 345px);
        }
    .aod_flying_cart.type_drawer.ship_progress.discount_yes.cartnotes_yes .aod-cart-container{
	max-height: calc(100vh - 380px);
	}
	.aod_flying_cart.type_drawer.ship_progress.discount_yes.agree_yes .aod-cart-container{
	max-height: calc(100vh - 380px);
	}
	
	.aod_flying_cart.type_drawer.ship_progress.discount_yes.cartnotes_yes.agree_yes .aod-cart-container {
    max-height: calc(100vh - 400px);
}

		
.flying_pop_container .aod_flying_cart {
      min-width: 97%;
    width: 97%;
	padding: 20px 10px 10px 20px;
	}
	.aod_left_panel_fly {
	display:none!important;
	}
	
	.aod_close_cart svg {
    width: 25px !important;
    height: 25px !important;
    right: 17px;
    top: 9px;
    }
	.aod_cart_discount_inp {
    margin-bottom: 6px;
    }
	
	.aod-product-row {
    margin-bottom: 5px;
    padding-bottom: 10px;
    }
	.aod-main-heading {
    padding-right: 25px;
	margin-top: 0px;
   }
   
   .flying_pop_container .aod_flying_cart.ship_progress.discount_yes.cartnotes_yes .aod-cart-container {
   max-height: calc(100vh - 390px);
   }
   .flying_pop_container .aod_flying_cart.ship_progress.discount_yes.agree_yes .aod-cart-container {
   max-height: calc(100vh - 390px);
   }
   
   .flying_pop_container .aod_flying_cart.ship_progress.discount_yes.cartnotes_yes.agree_yes .aod-cart-container {
   max-height: calc(100vh - 400px);
   }
   .aod_upsell_main_panel .owl-prev {
	   left:0px!important;
   }
   .aod_upsell_main_panel .owl-next {
	   right:0px!important;
   }
   .aod-quantity-container {
    position: relative;
}

   .aod-remove-from-cart {
    margin: 1% 0px;
    position: absolute;
    right: 0;
}


    }
	
	.aod_fly_agree {
    float: left;
    text-align: left;
    width: 100%;
    margin: 6px 0 9px;
}
.aod_fly_agree label {
    display: inline-block;
    margin: 0 10px 0 0;
	position: relative;
    top: 2px;
	width: 4%;
float: left;
z-index: 999;
}
.aod_fly_agree a {
    font-size: 11px;
	/*float: left;
	width: 92%;*/
	color: inherit;
}

.aod_fly_agree span {

    font-size: 10px;
    line-height: 12px !important;
    display: inherit;
    position: relative;
    top: 6px;
    width: 90%;
    float: left;
    font-family: inherit;

}

.hide_upsell{
	display:none!important;
}

.Polaris-Spinner--colorTeal {
    -webkit-filter: brightness(0) saturate(100%) invert(72%) sepia(8%) saturate(2838%) hue-rotate(130deg) brightness(92%) contrast(87%);
    filter: brightness(0) saturate(100%) invert(72%) sepia(8%) saturate(2838%) hue-rotate(130deg) brightness(92%) contrast(87%);
}
.Polaris-Spinner--sizeLarge {
    height: 1.9rem;
    width: 1.9rem;
}

@keyframes Polaris-Spinner--loading{
  to{
    transform:rotate(360deg); } }
    
.Polaris-Spinner {
    animation: Polaris-Spinner--loading 500ms linear infinite;
    color: transparent;
