@import "../fonts/stylesheet.css";
    /* -------------------------------- 

Primary style

-------------------------------- */
*::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*.cd-panel::after, *.cd-panel::before{
  content: '';
}


*.cd-panel-close::after, *.cd-panel-close::before{
  content: '';
}
 

/* -------------------------------- 

Main components 

-------------------------------- */
 
.cd-main-content {
  text-align: center;
}
 
.cd-main-content .cd-btn {
  position: relative;
  display: inline-block;
  padding: 1em 2em;
  background-color: #89ba2c;
  color: #ffffff;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.no-touch .cd-main-content .cd-btn:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1170px) {
  .cd-main-content h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.cd-panel  {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  -webkit-transition: visibility 0s 0.6s;
  -moz-transition: visibility 0s 0.6s;
  transition: visibility 0s 0.6s;
  z-index:1001;
}
.cd-panel::after  {
  /* overlay layer */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-panel.is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  -moz-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
 }
.cd-panel.is-visible::after {
  background: rgba(0, 0, 0, 0.0);
  -webkit-transition: background 0.3s 0s;
  -moz-transition: background 0.3s 0s;
  transition: background 0.3s 0s;
}


@-webkit-keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@-moz-keyframes cd-close-1 {
  0%, 50% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(45deg);
  }
}
@keyframes cd-close-1 {
  0%, 50% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@-webkit-keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-45deg);
  }
}
@-moz-keyframes cd-close-2 {
  0%, 50% {
    -moz-transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(-45deg);
  }
}
@keyframes cd-close-2 {
  0%, 50% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.cd-panel-header {
  position: fixed;
  width: auto; 
  height: 50px;
  line-height: 50px;
  z-index: 2;
  -webkit-transition: top 0.3s 0s;
  -moz-transition: top 0.3s 0s;
  transition: top 0.3s 0s;
}

.cd-panel-header h2 {
  color: #fff;
 font-family: 'swis721_btroman';
  padding-left: 5%;
  font-size:25px; line-height:50px;
}

.cd-panel-header h2 span {
  color: #fff;
 font-family: 'swis721_btroman';
 }
.from-right .cd-panel-header, .from-left .cd-panel-header {
  top: -50px;
}
.from-right .cd-panel-header {
  right: 0;
}
.from-left .cd-panel-header {
  left: 0;
}
.is-visible .cd-panel-header {
  top: 0;
  -webkit-transition: top 0.3s 0.3s;
  -moz-transition: top 0.3s 0.3s;
  transition: top 0.3s 0.3s;
}

 
@media only screen and (min-width: 220px) {
  .cd-panel-header {
    width: 300px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-header {
    width: 300px;
  }
}

.cd-panel-close {
  position:absolute;
  top: -15px;
  right: 0;
  height: 55px;
  width: 55px;
  /* image replacement */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;  
}
.cd-panel-close::before, .cd-panel-close::after {
  /* close icon created in CSS */
  position: absolute;
  top: 34px;
  left: 15px;
  height: 2px;
  width: 25px;
  background-color: #fff;
  /* this fixes a bug where pseudo elements are slighty off position */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius:100px;
}
.cd-panel-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-panel-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.no-touch .cd-panel-close:hover {
}
.no-touch .cd-panel-close:hover::before, .no-touch .cd-panel-close:hover::after {
  background-color: #fff;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.no-touch .cd-panel-close:hover::before {
  -webkit-transform: rotate(220deg);
  -moz-transform: rotate(220deg);
  -ms-transform: rotate(220deg);
  -o-transform: rotate(220deg);
  transform: rotate(220deg);
}
.no-touch .cd-panel-close:hover::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.cd-panel-container {
  position: fixed;
  width: 90%;
  height: 100%;
  top: 0;
  background: #1650a3;
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-box-shadow: 0px 0px 70px #000;
    -moz-box-shadow: 0px 0px 70px #000;
    box-shadow: 0px 0px 70px #000;
}
.from-right .cd-panel-container {
  right: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.from-left .cd-panel-container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.is-visible .cd-panel-container {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
@media only screen and (min-width: 220px) {
  .cd-panel-container {
    width: 300px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-panel-container {
    width: 340px;
  }
}

.cd-panel-content {
  position: relative;
  top: 0;
  width: 92%;
  height: 90%;
   padding: 0 0;
  margin: 0px auto;

}

.cd-panel-content ul.cart_list {  padding:0px; margin:0px 0px 0 0; text-align:center; vertical-align:top;  }
.cd-panel-content ul.cart_list li { width:90%; display: inline-block;  }


.cd-panel-content p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #424f5c;
  line-height: 1.4;
  margin: 1em 0;
}
.cd-panel-content p:first-of-type {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .cd-panel-content p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
 



@media only screen and ( min-width: 641px) and ( max-width: 1980px) {

.cd-panel-content {
  position: relative;
  top: 0;
  width: 92%;
  height: 90%;
  padding: 0 0;
  margin: 30px auto;

}

    /* ::::  MY BAG CONTENT STYLING :::: */

.cd-bag-top {  width:100%;  height: 75%; position:absolute; top:0; overflow-x: hidden;   overflow-y: auto;  /* smooth scrolling on touch devices */ -webkit-overflow-scrolling: touch;}
.cd-bag-bottom { width:100%;  height: 200px; bottom:0; position:absolute; padding:10px 0px; background:#fff; z-index:1 }
.cd-wish-top {  width:100%;  height: 93%; position:absolute; top:0;   overflow-x: hidden;   overflow-y: auto; /* smooth scrolling on touch devices */ -webkit-overflow-scrolling: touch;}
.cd-wish-bottom {   width:100%; height: 30px; bottom:0; position:absolute; padding:10px 0px; background:#fff; z-index:1 }

.cd-bag-top::-webkit-scrollbar-track, .cd-wish-top::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 6px;
	background-color: #F5F5F5;
}

.cd-bag-top::-webkit-scrollbar, .cd-wish-top::-webkit-scrollbar
{
	width: 6px;
	background-color: #F5F5F5;
}

.cd-bag-top::-webkit-scrollbar-thumb, .cd-wish-top::-webkit-scrollbar-thumb
{
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

}


@media only screen and ( min-width: 220px) and ( max-width: 640px) {

.cd-panel-content {
position: relative;
overflow: auto;  /* smooth scrolling on touch devices */ -webkit-overflow-scrolling: touch;
} 



.cd-bag-top     {height: 100% auto; position:relative; top:auto; overflow: hidden; clear:both; }
.cd-bag-top::-webkit-scrollbar-track, .cd-bag-top::-webkit-scrollbar, .cd-bag-top::-webkit-scrollbar-thumb {display:none;}

.cd-wish-top    {height: 100% auto; position:relative; top:auto; overflow: hidden; clear:both;}
.cd-wish-top::-webkit-scrollbar-track, .cd-wish-top::-webkit-scrollbar, .cd-wish-top::-webkit-scrollbar-thumb {display:none;}

.cd-bag-bottom  {height: auto; padding:10px 0px;  bottom:0; position:relative; background:#fff; z-index:1; display:block; }
.cd-wish-bottom {height: auto; padding:10px 0px;  bottom:0; position:relative; background:#fff; z-index:1; display:block; } 

.cd-panel-content::-webkit-scrollbar-track  {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 6px; background-color: #F5F5F5;}
.cd-panel-content::-webkit-scrollbar        {width: 6px; background-color: #F5F5F5;}
.cd-panel-content::-webkit-scrollbar-thumb  {border-radius: 6px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #555;}

}