 /*
  /$$$$$$  /$$$$$$$$ /$$   /$$ /$$$$$$$$ /$$$$$$$   /$$$$$$  /$$      
 /$$__  $$| $$_____/| $$$ | $$| $$_____/| $$__  $$ /$$__  $$| $$      
| $$  \__/| $$      | $$$$| $$| $$      | $$  \ $$| $$  \ $$| $$      
| $$ /$$$$| $$$$$   | $$ $$ $$| $$$$$   | $$$$$$$/| $$$$$$$$| $$      
| $$|_  $$| $$__/   | $$  $$$$| $$__/   | $$__  $$| $$__  $$| $$      
| $$  \ $$| $$      | $$\  $$$| $$      | $$  \ $$| $$  | $$| $$      
|  $$$$$$/| $$$$$$$$| $$ \  $$| $$$$$$$$| $$  | $$| $$  | $$| $$$$$$$$
 \______/ |________/|__/  \__/|________/|__/  |__/|__/  |__/|________/
                                                                  
 */
/*
 @font-face {
    font-family: test-family;
    src: url('fonts/');
}
*/
html,body{
    margin:0;padding:0;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    touch-action: pan-y;
    line-height: 1.2;

    -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

div, button {
  touch-action: manipulation;
}

.ft_s {
    /*font-size: 12px !important;*/
    font-size: 1em !important;
}
.ft_ms {
  font-size: 19px !important;
}
.ft_m {
    /*font-size: 25px !important;*/
    font-size: 1.5em !important;
}
.ft_ml {
  font-size: 40px !important;
}
.ft_l {
    font-size: 50px !important;
}

h1 {
    margin-block-end: 10px;
    text-transform: uppercase;
    margin: 0px;
    font-size:2rem;
    font-weight:bold;
}



h2 {
    margin:0;
}

h3 {

  margin-bottom: 10px;
  margin-top: 0px;
  /* font-size:2rem; */
    font-weight:bold;
}



ol {
  font-weight: bold;
  line-height: 1.5em;
  margin-top: 0;
}

.centre {
    text-align: center;
}

.div-center {
    margin: auto;
    left: 0;
    right: 0;
}


.inline_b {
  display:inline-block;
}

.n_bold {
  font-weight: normal;
}


/* ---------------------- SCROLL ---------------------- */
.smart-scroll{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.scrolled-down{
   transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
   transform:translateY(0); transition: all 0.3s ease-in-out;
}
.scroll_v {
    overflow-y: scroll;
    overflow-x: hidden;
}




.gtxt {
  color: #999;
  
}

.vh80 {height:80vh;}
.vh90 {height:90vh;}
.vh100 {height:100vh;}

.wa {width: auto;}
.w50 {width:48%;}
.w45 {width:45%;}
.w40 {width:40%;}

.w20 {width:20%;}
.w10 {width:10%;}

.p10 {padding:10px;}

.margin_r {
  margin-right: 8px;
}

.ta_left{
  text-align:left;
}
.ta_right{
  text-align:right;
}


.w_fill {
    /*width:-webkit-fill-available;*/
    width:98% !important;
}







.border-3 {
  border-width:3px !important;
}



.parent-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-b {
    flex: 1 1 600px; /*  Stretching: */
    flex: 0 1 600px; /*  No stretching: */
  }

  /* 2 Per row */
.flex-6 {
flex: 1 1 240px; /*  Stretching: */
flex: 0 1 240px; /*  No stretching: */
}


.parent-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

/* 1 Per row */
.col-12-1 {
    grid-column: 1 / span 12;
}

/* 2 Per row */
.col-6-1 {
    grid-column: 1 / span 6;
}
.col-6-2 {
    grid-column: 7 / span 12;
}


/* 3 Per row */
.col-4-1 {
    grid-column: 1 / span 4;
}
.col-4-2 {
    grid-column: 5 / span 8;
}
.col-4-3 {
    grid-column: 9 / span 12;
}

/* 4 Per row */
.col-3-1 {
    grid-column: 1 / span 3;
}
.col-3-2 {
    grid-column: 4 / span 6;
}
.col-3-3 {
    grid-column: 7 / span 9;
}
.col-3-4 {
    grid-column: 10 / span 12;
}

/* 1 smaller row */
.col-10-1 {
    grid-column: 2 / span 10;
}


  .noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
  }

  .sequence {
    display:inline-block;
  }
  
.welcome_intro {
  font-size: 30px;
    line-height: 1;

}

.welcome_intro span:nth-child(1) {
  font-weight: bold;
  display: block;
}


.welcome_intro span:nth-child(2) {
font-size: 20px !important;
position: relative;
top: -3px;
display: block;
}

.welcome_intro span:nth-child(3) {
  display: block;
}

.welcome_intro span:nth-child(4) {
  display: block;
}

  .gen_txt {
    font-size: 1em;
}

.red_text {
  font-weight:bold; 
  color:red;
}
.margin_t {
  margin-top:20px;
}

.margin_b {
  margin-bottom:20px;
}



.overbtn_div {
  position: absolute;
  bottom: 0px;
  width:100%;

}
.over_middle {
  z-index: 9;
  position: relative;
  top: -20px;

}
.over_done {
z-index: 99;
  float: left;
  position: relative;
  top: 0px;
}
.over_left {
  z-index: 999;
  /*float: left;*/
  position: relative;
  top: -52px;
  width: inherit;

}

.over_right{
  /*width: 580px;*/
  z-index: 995;
 
  position: relative;
  top: -130px;
  text-align:right;
  right: 10px;

}

.overbtn_text {
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  color: #fff;
  top: 10px;
  margin: 0px 18px;
  text-shadow:-1px -1px 0 #000,
  1px -1px 0 #000,
  -1px 1px 0 #000,
  1px 1px 0 #000; 
  pointer-events: none;
  font-weight: bold;

}

.pointer {
    cursor: pointer;
  
}

.x_btn {
  background: none;
  border: none;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  font-family: Arial;
  color: #999;
  font-size: 30px;
  padding: 10px 20px 10px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;

  position: absolute;
  top: 0;
  right: 0;
}

.x_btn:hover {
  color: #fff;
  background-color: #c35d5d;
}


.template_img {
  width: 100%;
  pointer-events: none;
  cursor: pointer;
}


.template_btn {
  overflow: hidden;
  position:relative;
  cursor: pointer;
  display:inline-block;
  overflow:hidden; 
  height:auto;
  width:49.5%;
  padding-bottom: 40px;
}

.template_btn img {
  cursor: pointer;
  
}


.template_btn_label {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
}

.buyitem_btn {
  cursor: pointer;
}

.shp_details {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-shadow: 0px 1px 4px #000000;
  
}

.shp_pq_details {
  position: relative;
  text-align: center;
  
  font-weight: bold;
 
  
}

/* ------------------------------------- ROWS -------------------------------------*/
.rowss {
    /* margin:5px; */
    width:100%;
    position:relative;

    display: inline-block;
    margin:7px;
    font-size: 25px;
    width: 100%;
    height: 30px;
}


.rowss select {
    font-size: 25px;
}
.rowss input[type='text'] {
    font-size: 25px;
}
.rowss input[type='number'] {
    font-size: 25px;
}

.rowss div:first-child{
  position: relative;
  left: 1%;
  display:inline;

}

.rowss input:nth-child(2), .rowss select:nth-child(2), .rowss div:nth-child(2){
    position: absolute;
    top: 0;
    left: 25%;
    width: 63%
}

.rowss button:nth-child(3){
  position: absolute;
  float: right;
  right: 0;
  top: -7px;
  font-size: 20px;
  padding: 5px 15px;
  margin-right: 20px;
}

.screen_div {
    /* display:none; */
    /*height:100%;*/
    padding:0px 10px;
    flex: 1 1 490px; /*  Stretching: */
    flex: 0 1 490px; /*  No stretching: */
}

.hide {
    display: none;
}



input {
    width:99%;
}

.edit_item_btn{
  width: 80% !important;
  max-width: 300px;
}


.nb_line {
  width:17% !important;
  pointer-events: none;
}

.nb_line_replace {
  width:17% !important;
  pointer-events: none;
  font-weight: bold;
  background-color: #0c629c;
  color: #fff;
}

select, option {
    width:100%;
}


#notice_m_text {
  font-size: 20px;
}

/*
 /$$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$$ /$$$$$$  /$$   /$$  /$$$$$$ 
| $$__  $$| $$  | $$|__  $$__/|__  $$__//$$__  $$| $$$ | $$ /$$__  $$
| $$  \ $$| $$  | $$   | $$      | $$  | $$  \ $$| $$$$| $$| $$  \__/
| $$$$$$$ | $$  | $$   | $$      | $$  | $$  | $$| $$ $$ $$|  $$$$$$ 
| $$__  $$| $$  | $$   | $$      | $$  | $$  | $$| $$  $$$$ \____  $$
| $$  \ $$| $$  | $$   | $$      | $$  | $$  | $$| $$\  $$$ /$$  \ $$
| $$$$$$$/|  $$$$$$/   | $$      | $$  |  $$$$$$/| $$ \  $$|  $$$$$$/
|_______/  \______/    |__/      |__/   \______/ |__/  \__/ \______/ 
                                                                                                                                     
*/





.cbtn {

  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  border: none;
  /*text-shadow: 1px 1px 3px #000000;*/
  font-family: Arial;
  color: #ffffff;

  font-size: 22px;
  padding: 10px 20px 10px 20px;

  margin-top: 5px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;

}



.sbtn {
  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  border: none;
  /*text-shadow: 1px 1px 3px #000000;*/
  font-family: Arial;
  color: #ffffff;

  font-size: 20px;
  padding: 6px 8px 6px 8px;

  margin-top: 5px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;

}






.pushbtn {
  top: 20px;
  font-size: 30px;

  line-height: 60px;
  padding: 10px 15px;
  margin-right: 4px;
  margin-top: 5px;
  float:left;

  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  border: none;
  /*text-shadow: 1px 1px 3px #000000;*/
  font-family: Arial;
  color: #d5deea;
  font-weight: bold;
  text-decoration: none;
  box-shadow: inset 1px 3px 10px 4px #000000;

  cursor: pointer;


}


/*
 /$$$$$$ /$$$$$$$$ /$$$$$$$$ /$$      /$$       /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$
|_  $$_/|__  $$__/| $$_____/| $$$    /$$$      | $$_____/| $$__  $$|_  $$_/|__  $$__/
  | $$     | $$   | $$      | $$$$  /$$$$      | $$      | $$  \ $$  | $$     | $$   
  | $$     | $$   | $$$$$   | $$ $$/$$ $$      | $$$$$   | $$  | $$  | $$     | $$   
  | $$     | $$   | $$__/   | $$  $$$| $$      | $$__/   | $$  | $$  | $$     | $$   
  | $$     | $$   | $$      | $$\  $ | $$      | $$      | $$  | $$  | $$     | $$   
 /$$$$$$   | $$   | $$$$$$$$| $$ \/  | $$      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$   
|______/   |__/   |________/|__/     |__/      |________/|_______/ |______/   |__/   
                                                                            
*/


#i_text_text::placeholder {
  color: #fff;
  font-weight: bold;
  left:5px;
}

.arrow_div {
  float: left;
  
}

#italic_btn {
  font-family: 'Times New Roman', Times, serif !important;
  font-style: italic;
}
.bold {
  font-weight: bold;
}



#text_swatch_div {
  float:left;
}



.thumb_btn {
  opacity:0.5;
  cursor: pointer;
}
.thumb_btn:hover {
  opacity:1;
}
.save_view_other_img {
  height:50px;
 
}

#item_curvetext_div {
  float: left;
    width: 100%;
    margin-bottom: 20px;
}

.nbm_delete_names {
  position: relative;
  padding: 0px 5px !important;
  margin-top: auto !important;
  top: 2px;
}


#swap_images_list {
  overflow-x: scroll;
  white-space: nowrap;
  background-color: #ccc;
}

.swap_img {
  cursor: pointer;
  height:100px;


}
/*   
  /$$$$$$   /$$$$$$  /$$$$$$$   /$$$$$$  /$$       /$$             /$$$$$$$   /$$$$$$  /$$$$$$$ 
 /$$__  $$ /$$__  $$| $$__  $$ /$$__  $$| $$      | $$            | $$__  $$ /$$__  $$| $$__  $$
| $$  \__/| $$  \__/| $$  \ $$| $$  \ $$| $$      | $$            | $$  \ $$| $$  \ $$| $$  \ $$
|  $$$$$$ | $$      | $$$$$$$/| $$  | $$| $$      | $$            | $$$$$$$ | $$$$$$$$| $$$$$$$/
 \____  $$| $$      | $$__  $$| $$  | $$| $$      | $$            | $$__  $$| $$__  $$| $$__  $$
 /$$  \ $$| $$    $$| $$  \ $$| $$  | $$| $$      | $$            | $$  \ $$| $$  | $$| $$  \ $$
|  $$$$$$/|  $$$$$$/| $$  | $$|  $$$$$$/| $$$$$$$$| $$$$$$$$      | $$$$$$$/| $$  | $$| $$  | $$
 \______/  \______/ |__/  |__/ \______/ |________/|________/      |_______/ |__/  |__/|__/  |__/
*/
  ::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;  
    background-color: #ffffff; 
}
  
.navbar {
  padding:0.3em;
}
 /*
 /$$$$$$$   /$$$$$$   /$$$$$$  /$$$$$$$$  /$$$$$$ 
| $$__  $$ /$$__  $$ /$$__  $$| $$_____/ /$$__  $$
| $$  \ $$| $$  \ $$| $$  \__/| $$      | $$  \__/
| $$$$$$$/| $$$$$$$$| $$ /$$$$| $$$$$   |  $$$$$$ 
| $$____/ | $$__  $$| $$|_  $$| $$__/    \____  $$
| $$      | $$  | $$| $$  \ $$| $$       /$$  \ $$
| $$      | $$  | $$|  $$$$$$/| $$$$$$$$|  $$$$$$/
|__/      |__/  |__/ \______/ |________/ \______/ 
PAGES                                            
 */
 #body_div {
    /*height:100%;*/
    max-width:600px;
    margin: 0 auto;
    /* background-color: #fff; */
    padding-top: 5px;
}

.main_div {
    width:100%;
     /*height:100%; */
    float:left;
    /* border: #000 solid 1px; */
    padding-bottom: 100px;
    
}

#main_1_div {
     background-color: none;
}

#main_2_div {
    /* overflow-y: scroll; */
    padding:5px;
    background-color: #fff;
}

 /*DESKTOP*/
/* @media only screen and (min-width: 699px) {
    .main_div {
        width:49%;
    }
} */


.category_btn {
  position: relative;
  display: inline-block;
  /*padding: 10px;*/
  cursor: pointer;
  opacity:0.8;
  padding-bottom: 40px;
}
.category_btn:hover {
  opacity:1;
}

.category_thumb {
  max-width:100px;
}

.shapes_btn {
  position: relative;
  display: inline-block;
  /*padding: 10px;*/
  cursor: pointer;
  opacity:0.8;
}

.shapes_btn:hover {
  opacity:1;
}


#item_text_scroll_div, #item_image_scroll_div, #item_bg_scroll_div {
    /*overflow-y: scroll;
    height: 180px;*/
    width: 320px;
    display: inline-block;
    /*background-color: #e7e8ea;
    box-shadow: inset 1px 4px 4px 0px #95989e;*/
}





/*
 /$$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$  /$$      /$$  /$$$$$$  /$$$$$$$  /$$$$$$$ 
| $$__  $$ /$$__  $$ /$$__  $$ /$$__  $$| $$  /$ | $$ /$$__  $$| $$__  $$| $$__  $$
| $$  \ $$| $$  \ $$| $$  \__/| $$  \__/| $$ /$$$| $$| $$  \ $$| $$  \ $$| $$  \ $$
| $$$$$$$/| $$$$$$$$|  $$$$$$ |  $$$$$$ | $$/$$ $$ $$| $$  | $$| $$$$$$$/| $$  | $$
| $$____/ | $$__  $$ \____  $$ \____  $$| $$$$_  $$$$| $$  | $$| $$__  $$| $$  | $$
| $$      | $$  | $$ /$$  \ $$ /$$  \ $$| $$$/ \  $$$| $$  | $$| $$  \ $$| $$  | $$
| $$      | $$  | $$|  $$$$$$/|  $$$$$$/| $$/   \  $$|  $$$$$$/| $$  | $$| $$$$$$$/
|__/      |__/  |__/ \______/  \______/ |__/     \__/ \______/ |__/  |__/|_______/ 
PASSWORD                                                                                  
*/

.short{
font-weight:bold;
color:#FF0000;
font-size:larger;
}
.weak{
font-weight:bold;
color:orange;
font-size:larger;
}
.good{
font-weight:bold;
color:#2D98F3;
font-size:larger;
}
.strong{
font-weight:bold;
color: limegreen;
font-size:larger;
}


 /*
  /$$$$$$   /$$$$$$  /$$   /$$ /$$    /$$  /$$$$$$   /$$$$$$ 
 /$$__  $$ /$$__  $$| $$$ | $$| $$   | $$ /$$__  $$ /$$__  $$
| $$  \__/| $$  \ $$| $$$$| $$| $$   | $$| $$  \ $$| $$  \__/
| $$      | $$$$$$$$| $$ $$ $$|  $$ / $$/| $$$$$$$$|  $$$$$$ 
| $$      | $$__  $$| $$  $$$$ \  $$ $$/ | $$__  $$ \____  $$
| $$    $$| $$  | $$| $$\  $$$  \  $$$/  | $$  | $$ /$$  \ $$
|  $$$$$$/| $$  | $$| $$ \  $$   \  $/   | $$  | $$|  $$$$$$/
 \______/ |__/  |__/|__/  \__/    \_/    |__/  |__/ \______/ 
                                                                                                    
 */
 .canvas_middlealign {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
 }

 
#item_canvas_frame_div {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  width:100%;

}



 #item_canvas_div {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    overflow: hidden;
    background-color: white;
    height:auto;
    /*margin-bottom: 25px;
     padding-top: 100%;square to width */
 }

 .vert_align {
  position: absolute !important;
  top:-100%; left:0; right: 0; bottom:-100%;
  margin: auto;
 }

 /* CANVAS RELATED  */
 #item_manage_div div {
    position:relative;

 }



#manage_background {
 height:60px;
    font-size: 2em;
    background-color: #999;
    border: none;
    color: white;
    padding: 0 0 0 20px;
    margin: 2px 0;
    
    cursor: pointer;
    width: 90%;
    position: relative;
}




 .edit_object_btn {
    height:60px;
    font-size: 2em;
    background-color: #999;
    border: none;
    color: white;
    padding: 0 0 0 20px;
    margin: 2px 0;
    
    cursor: pointer;
    width: 85%;
    position: relative;

    float:left;
 }


 .edit_object_line {
  float: left;
  color: #b7c3cc;
    font-size: 20px;
 }

 .canvas_btn_img {
  width: 32% !important;
  line-height: unset !important;
 }
 /* .add_obj_btn {
    height:60px;
    font-size: 2em;
    text-align: center;

    background-color: rgb(48, 75, 116);
    border: none;
    color: white;
 
    border-radius:20px;
    margin: 2px 0;
    
    cursor: pointer;
    width: 50%;
    position: relative;

 } */

 .edit_object_btn img {
    max-height: 50px;  
    min-width: 100px;
    position: relative;
   /* left: 40%;*/
    top: 5px;
}


.edit_image_btn {
  
  background-size: 150px 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #999;
  color: rgba(255,255,255,0);
}
.obj_close_div {
  position: relative;
  /*display:inline;*/
  top:2px;

  font-size: 2em;
  font-weight: bold;
  background-color: #505050;
  color: white;

 
  border: none;
  cursor: pointer;


  float:left;
  width:15%;
  line-height: 60px;
  text-align: center;

}


.obj_close_div:hover {
    background-color: #d23939;
}


.curvetext_input {
  width: 50px !important;
  border: none;
  color: #ccc;
  display:inline-block;
}
/*
  /$$$$$$   /$$$$$$  /$$   /$$ /$$    /$$  /$$$$$$   /$$$$$$         /$$$$$$   /$$$$$$  /$$   /$$ /$$$$$$$$ /$$$$$$$   /$$$$$$  /$$        /$$$$$$ 
 /$$__  $$ /$$__  $$| $$$ | $$| $$   | $$ /$$__  $$ /$$__  $$       /$$__  $$ /$$__  $$| $$$ | $$|__  $$__/| $$__  $$ /$$__  $$| $$       /$$__  $$
| $$  \__/| $$  \ $$| $$$$| $$| $$   | $$| $$  \ $$| $$  \__/      | $$  \__/| $$  \ $$| $$$$| $$   | $$   | $$  \ $$| $$  \ $$| $$      | $$  \__/
| $$      | $$$$$$$$| $$ $$ $$|  $$ / $$/| $$$$$$$$|  $$$$$$       | $$      | $$  | $$| $$ $$ $$   | $$   | $$$$$$$/| $$  | $$| $$      |  $$$$$$ 
| $$      | $$__  $$| $$  $$$$ \  $$ $$/ | $$__  $$ \____  $$      | $$      | $$  | $$| $$  $$$$   | $$   | $$__  $$| $$  | $$| $$       \____  $$
| $$    $$| $$  | $$| $$\  $$$  \  $$$/  | $$  | $$ /$$  \ $$      | $$    $$| $$  | $$| $$\  $$$   | $$   | $$  \ $$| $$  | $$| $$       /$$  \ $$
|  $$$$$$/| $$  | $$| $$ \  $$   \  $/   | $$  | $$|  $$$$$$/      |  $$$$$$/|  $$$$$$/| $$ \  $$   | $$   | $$  | $$|  $$$$$$/| $$$$$$$$|  $$$$$$/
 \______/ |__/  |__/|__/  \__/    \_/    |__/  |__/ \______/        \______/  \______/ |__/  \__/   |__/   |__/  |__/ \______/ |________/ \______/ 

CANVAS CONTROLS
*/
                                                                                                                                                

.controlset {
    display:inline-block
}





/*
 /$$$$$$$$ /$$   /$$ /$$$$$$  /$$$$$$  /$$$$$$$$       /$$$$$$ /$$$$$$$$ /$$$$$$$$ /$$      /$$  /$$$$$$ 
| $$_____/| $$  / $$|_  $$_/ /$$__  $$|__  $$__/      |_  $$_/|__  $$__/| $$_____/| $$$    /$$$ /$$__  $$
| $$      |  $$/ $$/  | $$  | $$  \__/   | $$           | $$     | $$   | $$      | $$$$  /$$$$| $$  \__/
| $$$$$    \  $$$$/   | $$  |  $$$$$$    | $$           | $$     | $$   | $$$$$   | $$ $$/$$ $$|  $$$$$$ 
| $$__/     >$$  $$   | $$   \____  $$   | $$           | $$     | $$   | $$__/   | $$  $$$| $$ \____  $$
| $$       /$$/\  $$  | $$   /$$  \ $$   | $$           | $$     | $$   | $$      | $$\  $ | $$ /$$  \ $$
| $$$$$$$$| $$  \ $$ /$$$$$$|  $$$$$$/   | $$          /$$$$$$   | $$   | $$$$$$$$| $$ \/  | $$|  $$$$$$/
|________/|__/  |__/|______/ \______/    |__/         |______/   |__/   |________/|__/     |__/ \______/ 
                                                                                            
EXIST ITEMS                                                                                                                                                                                       
*/


.exst_item div {
    cursor: pointer;
   
}


.exist_checkbox {
  
    
    opacity:0;

}


/*
  /$$$$$$  /$$   /$$ /$$      /$$ /$$      /$$  /$$$$$$  /$$$$$$$  /$$     /$$
 /$$__  $$| $$  | $$| $$$    /$$$| $$$    /$$$ /$$__  $$| $$__  $$|  $$   /$$/
| $$  \__/| $$  | $$| $$$$  /$$$$| $$$$  /$$$$| $$  \ $$| $$  \ $$ \  $$ /$$/ 
|  $$$$$$ | $$  | $$| $$ $$/$$ $$| $$ $$/$$ $$| $$$$$$$$| $$$$$$$/  \  $$$$/  
 \____  $$| $$  | $$| $$  $$$| $$| $$  $$$| $$| $$__  $$| $$__  $$   \  $$/   
 /$$  \ $$| $$  | $$| $$\  $ | $$| $$\  $ | $$| $$  | $$| $$  \ $$    | $$    
|  $$$$$$/|  $$$$$$/| $$ \/  | $$| $$ \/  | $$| $$  | $$| $$  | $$    | $$    
 \______/  \______/ |__/     |__/|__/     |__/|__/  |__/|__/  |__/    |__/    
                                                                         
SUMMARY*/
.sum_item {
    width: 100%;
    margin-bottom: 5px;
    display: inline-block;
    /*background-color: lightgrey;
    border-radius: 10px;*/
    position: relative;
    border-bottom: groove 2px #ccc;

}


.sum_item div {

    margin:10px;
}

.sum_img {
    height:120px;
    width:120px;
}
.sum_details {
    font-size: large;

   
}
.sum_units {
 
    position: absolute;
    top: 0px;
    right: 0;
    
}
.sum_item_units {
  font-size: 18px;
  padding: 2px;
}
/*
.sum_copy_btn {
  position: absolute;
  top: 65px;
  right: 0;
  padding: 12px 17px 12px 17px;
  
}*/

#shipping_details_summary {
    padding: 5px;
    border: solid 3px #2a82bc;
    color: #2a82bc;
}

#shipping_details_edit_btn {
    position: relative;
    top: 20px;
    right: 10px;
    float: right;
}

 /*
 /$$      /$$  /$$$$$$  /$$$$$$$   /$$$$$$  /$$      
| $$$    /$$$ /$$__  $$| $$__  $$ /$$__  $$| $$      
| $$$$  /$$$$| $$  \ $$| $$  \ $$| $$  \ $$| $$      
| $$ $$/$$ $$| $$  | $$| $$  | $$| $$$$$$$$| $$      
| $$  $$$| $$| $$  | $$| $$  | $$| $$__  $$| $$      
| $$\  $ | $$| $$  | $$| $$  | $$| $$  | $$| $$      
| $$ \/  | $$|  $$$$$$/| $$$$$$$/| $$  | $$| $$$$$$$$
|__/     |__/ \______/ |_______/ |__/  |__/|________/                                                 
 */

 /* Full-width input fields */
/*
    input[type=text],
    input[type=password] {
        width: 100%;
        padding: 12px 20px;
        margin: 8px 0;
        display: inline-block;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }*/
    /* Set a style for all buttons */
/*
    button {
        background-color: rgb(48, 75, 116);
        color: white;
        padding: 14px 20px;
        margin: 8px 0;
        border: none;
        cursor: pointer;
        width: 100%;
    }

    button:hover {
        opacity: 0.8;
    }*/
    /* Extra styles for the cancel button */


  

    .cancelbtn {
        width: auto;
        padding: 10px 18px;
        background-color: #f44336;
    }
    /* Center the image and position the close button */

    .imgcontainer {
        text-align: center;
        margin: 24px 0 12px 0;
        position: relative;
    }


    .container {
        padding: 16px;
    }

    span.psw {
        float: right;
        padding-top: 16px;
    }
    /* The Modal (background) */

    /* The Modal (background) */
.modal {
  text-align: center;

  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  z-index: 9999;
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 50px auto; /* 15% from the top and centered */
  padding: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
  /*width: 85%;  Could be more or less, depending on screen size */
  max-width: 600px;
  border-radius: 5px;
}




    /* Add Zoom Animation */

    .animate {
        -webkit-animation: animatezoom 0.6s;
        animation: animatezoom 0.6s
    }

    @-webkit-keyframes animatezoom {
        from {
            -webkit-transform: scale(0)
        }
        to {
            -webkit-transform: scale(1)
        }
    }

    @keyframes animatezoom {
        from {
            transform: scale(0)
        }
        to {
            transform: scale(1)
        }
    }
    /* Change styles for span and cancel button on extra small screens */

    @media screen and (max-width: 300px) {
        span.psw {
            display: block;
            float: none;
        }
        .cancelbtn {
            width: 100%;
        }
    }

/*
  /$$$$$$  /$$   /$$ /$$$$$$ /$$      /$$  /$$$$$$  /$$$$$$$$ /$$$$$$  /$$$$$$  /$$   /$$
 /$$__  $$| $$$ | $$|_  $$_/| $$$    /$$$ /$$__  $$|__  $$__/|_  $$_/ /$$__  $$| $$$ | $$
| $$  \ $$| $$$$| $$  | $$  | $$$$  /$$$$| $$  \ $$   | $$     | $$  | $$  \ $$| $$$$| $$
| $$$$$$$$| $$ $$ $$  | $$  | $$ $$/$$ $$| $$$$$$$$   | $$     | $$  | $$  | $$| $$ $$ $$
| $$__  $$| $$  $$$$  | $$  | $$  $$$| $$| $$__  $$   | $$     | $$  | $$  | $$| $$  $$$$
| $$  | $$| $$\  $$$  | $$  | $$\  $ | $$| $$  | $$   | $$     | $$  | $$  | $$| $$\  $$$
| $$  | $$| $$ \  $$ /$$$$$$| $$ \/  | $$| $$  | $$   | $$    /$$$$$$|  $$$$$$/| $$ \  $$
|__/  |__/|__/  \__/|______/|__/     |__/|__/  |__/   |__/   |______/ \______/ |__/  \__/                                                                                                                
*/
.colour_alert {
	-webkit-animation: c_a_keys 1s steps(2) infinite;
	-moz-animation: c_a_keys 1s steps(2) infinite;
	-ms-animation: c_a_keys 1s steps(2) infinite;
	-o-animation: c_a_keys 1s steps(2) infinite;
	animation: c_a_keys 1s steps(2) infinite;
}


@-webkit-keyframes c_a_keys {
	from { background-color: #bb8383; }
	to { background-color: red; }
}
@-moz-keyframes c_a_keys {
	from { background-color: #bb8383; }
	to { background-color: red; }
}
@-ms-keyframes c_a_keys {
	from { background-color: #bb8383; }
	to { background-color: red; }
}
@-o-keyframes c_a_keys {
	from { background-color: #bb8383; }
	to { background-color: red; }
}
@keyframes c_a_keys {
	from { background-color: #bb8383; }
	to { background-color: red; }
}

/*
  /$$$$$$  /$$$$$$$  /$$$$$$$   /$$$$$$  /$$      /$$  /$$$$$$ 
 /$$__  $$| $$__  $$| $$__  $$ /$$__  $$| $$  /$ | $$ /$$__  $$
| $$  \ $$| $$  \ $$| $$  \ $$| $$  \ $$| $$ /$$$| $$| $$  \__/
| $$$$$$$$| $$$$$$$/| $$$$$$$/| $$  | $$| $$/$$ $$ $$|  $$$$$$ 
| $$__  $$| $$__  $$| $$__  $$| $$  | $$| $$$$_  $$$$ \____  $$
| $$  | $$| $$  \ $$| $$  \ $$| $$  | $$| $$$/ \  $$$ /$$  \ $$
| $$  | $$| $$  | $$| $$  | $$|  $$$$$$/| $$/   \  $$|  $$$$$$/
|__/  |__/|__/  |__/|__/  |__/ \______/ |__/     \__/ \______/ 
                                                             
*/

.arrow_div button{
    width: 32%;
    text-align: center;
}

.arrow_up {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #ffffff transparent;
    display: inline-block;
}

.arrow_down {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 15px 0 15px;
    border-color: #ffffff transparent transparent transparent;
    display: inline-block;
}

.arrow_left {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 30px 10px 0;
    border-color: transparent #ffffff transparent transparent;
    display: inline-block;
}

.arrow_right {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 30px;
    border-color: transparent transparent transparent #ffffff;
    display: inline-block;
}






/*
  /$$$$$$  /$$       /$$$$$$ /$$$$$$$  /$$$$$$$$ /$$$$$$$ 
 /$$__  $$| $$      |_  $$_/| $$__  $$| $$_____/| $$__  $$
| $$  \__/| $$        | $$  | $$  \ $$| $$      | $$  \ $$
|  $$$$$$ | $$        | $$  | $$  | $$| $$$$$   | $$$$$$$/
 \____  $$| $$        | $$  | $$  | $$| $$__/   | $$__  $$
 /$$  \ $$| $$        | $$  | $$  | $$| $$      | $$  \ $$
|  $$$$$$/| $$$$$$$$ /$$$$$$| $$$$$$$/| $$$$$$$$| $$  | $$
 \______/ |________/|______/|_______/ |________/|__/  |__/
                                                     
*/
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 20.8px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #73c6ed;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 3.4px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background: #75a6c7;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -20.8px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #73c6ed;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #73c6ed;
  border-radius: 0px;
  border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 3.4px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background: #75a6c7;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #73c6ed;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #73c6ed;
  border: 0px solid rgba(1, 1, 1, 0);
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 3.4px #000000, 0px 0px 1px #0d0d0d;
  border: 0px solid #000000;
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background: #75a6c7;
  cursor: pointer;
  height: 8.4px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #73c6ed;
}
input[type=range]:focus::-ms-fill-upper {
  background: #73c6ed;
}








/*
  /$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$       /$$$$$$ /$$   /$$ /$$$$$$$$
 /$$__  $$| $$_____/| $$_____/| $$      |_  $$_/| $$$ | $$| $$_____/
| $$  \ $$| $$      | $$      | $$        | $$  | $$$$| $$| $$      
| $$  | $$| $$$$$   | $$$$$   | $$        | $$  | $$ $$ $$| $$$$$   
| $$  | $$| $$__/   | $$__/   | $$        | $$  | $$  $$$$| $$__/   
| $$  | $$| $$      | $$      | $$        | $$  | $$\  $$$| $$      
|  $$$$$$/| $$      | $$      | $$$$$$$$ /$$$$$$| $$ \  $$| $$$$$$$$
 \______/ |__/      |__/      |________/|______/|__/  \__/|________/

OFFLINE
*/


/*------------------------------------------- LANGUAGE OFFLINE STYLE  ------------------------------------------- */
/* offline-language-english-indicator.css */

/* line 5, ../sass/offline-language-english-indicator.sass */
.offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Online";
  }
  /* line 10, ../sass/offline-language-english-indicator.sass */
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Offline";
  }

/*------------------------------------------- LANGUAGE OFFLINE STYLE  ------------------------------------------- */
/* offline-language-english.css */
  /* line 6, ../sass/_content.sass */
.offline-ui .offline-ui-retry:before {
    content: "Reconnect";
  }
  /* line 11, ../sass/_content.sass */
  .offline-ui.offline-ui-up .offline-ui-content:before {
    content: "Your computer is connected to the internet.";
  }
  @media (max-width: 1024px) {
    /* line 11, ../sass/_content.sass */
    .offline-ui.offline-ui-up .offline-ui-content:before {
      content: "Your device is connected to the internet.";
    }
  }
  @media (max-width: 568px) {
    /* line 11, ../sass/_content.sass */
    .offline-ui.offline-ui-up .offline-ui-content:before {
      content: "Your device is connected.";
    }
  }
  /* line 22, ../sass/_content.sass */
  .offline-ui.offline-ui-down .offline-ui-content:before {
    content: "Your computer lost its internet connection.";
  }
  @media (max-width: 1024px) {
    /* line 22, ../sass/_content.sass */
    .offline-ui.offline-ui-down .offline-ui-content:before {
      content: "Your device lost its internet connection.";
    }
  }
  @media (max-width: 568px) {
    /* line 22, ../sass/_content.sass */
    .offline-ui.offline-ui-down .offline-ui-content:before {
      content: "Your device isn't connected.";
    }
  }
  /* line 33, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-connecting .offline-ui-content:before, .offline-ui.offline-ui-down.offline-ui-connecting-2s .offline-ui-content:before {
    content: "Attempting to reconnect...";
  }
  /* line 42, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " seconds...";
  }
  @media (max-width: 568px) {
    /* line 42, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "s...";
    }
  }
  /* line 50, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " second...";
  }
  @media (max-width: 568px) {
    /* line 50, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="second"][data-retry-in-value="1"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "s...";
    }
  }
  /* line 58, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minutes...";
  }
  @media (max-width: 568px) {
    /* line 58, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "m...";
    }
  }
  /* line 66, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " minute...";
  }
  @media (max-width: 568px) {
    /* line 66, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="minute"][data-retry-in-value="1"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "m...";
    }
  }
  /* line 74, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hours...";
  }
  @media (max-width: 568px) {
    /* line 74, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "h...";
    }
  }
  /* line 82, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
    content: "Connection lost. Reconnecting in " attr(data-retry-in-value) " hour...";
  }
  @media (max-width: 568px) {
    /* line 82, ../sass/_content.sass */
    .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-content[data-retry-in-unit="hour"][data-retry-in-value="1"]:before {
      content: "Reconnecting in " attr(data-retry-in-value) "h...";
    }
  }
  /* line 90, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
    display: none;
  }
  /* line 93, ../sass/_content.sass */
  .offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s .offline-ui-content:before {
    content: "Connection attempt failed.";
  }






/*------------------------------------------- DEFAULT OFFLINE STYLE  ------------------------------------------- */

/* line 4, ../sass/_offline-theme-base.sass */
.offline-ui, .offline-ui *, .offline-ui:before, .offline-ui:after, .offline-ui *:before, .offline-ui *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  /* line 7, ../sass/_offline-theme-base.sass */
  .offline-ui {
    display: none;
    position: fixed;
    background: white;
    z-index: 2000;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
  }
  /* line 17, ../sass/_offline-theme-base.sass */
  .offline-ui .offline-ui-content:before {
    display: inline;
  }
  /* line 20, ../sass/_offline-theme-base.sass */
  .offline-ui .offline-ui-retry {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: none;
  }
  /* line 24, ../sass/_offline-theme-base.sass */
  .offline-ui .offline-ui-retry:before {
    display: inline;
  }
  /* line 29, ../sass/_offline-theme-base.sass */
  .offline-ui.offline-ui-up.offline-ui-up-5s {
    display: block;
  }
  /* line 32, ../sass/_offline-theme-base.sass */
  .offline-ui.offline-ui-down {
    display: block;
  }
  /* line 37, ../sass/_offline-theme-base.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting .offline-ui-retry {
    display: block;
  }
  /* line 42, ../sass/_offline-theme-base.sass */
  .offline-ui.offline-ui-down.offline-ui-reconnect-failed-2s.offline-ui-waiting .offline-ui-retry {
    display: none;
  }
  
  @-webkit-keyframes offline-fadein {
    /* line 6, ../sass/_keyframes.sass */
    0% {
      opacity: 0;
    }
  
    /* line 8, ../sass/_keyframes.sass */
    100% {
      opacity: 1;
    }
  }
  
  @-moz-keyframes offline-fadein {
    /* line 6, ../sass/_keyframes.sass */
    0% {
      opacity: 0;
    }
  
    /* line 8, ../sass/_keyframes.sass */
    100% {
      opacity: 1;
    }
  }
  
  @-ms-keyframes offline-fadein {
    /* line 6, ../sass/_keyframes.sass */
    0% {
      opacity: 0;
    }
  
    /* line 8, ../sass/_keyframes.sass */
    100% {
      opacity: 1;
    }
  }
  
  @-o-keyframes offline-fadein {
    /* line 6, ../sass/_keyframes.sass */
    0% {
      opacity: 0;
    }
  
    /* line 8, ../sass/_keyframes.sass */
    100% {
      opacity: 1;
    }
  }
  
  @keyframes offline-fadein {
    /* line 6, ../sass/_keyframes.sass */
    0% {
      opacity: 0;
    }
  
    /* line 8, ../sass/_keyframes.sass */
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes offline-fadeout-and-hide {
    /* line 20, ../sass/_keyframes.sass */
    0% {
      opacity: 1;
      display: block;
    }
  
    /* line 23, ../sass/_keyframes.sass */
    99% {
      opacity: 0;
      display: block;
    }
  
    /* line 26, ../sass/_keyframes.sass */
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  @-moz-keyframes offline-fadeout-and-hide {
    /* line 20, ../sass/_keyframes.sass */
    0% {
      opacity: 1;
      display: block;
    }
  
    /* line 23, ../sass/_keyframes.sass */
    99% {
      opacity: 0;
      display: block;
    }
  
    /* line 26, ../sass/_keyframes.sass */
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  @-ms-keyframes offline-fadeout-and-hide {
    /* line 20, ../sass/_keyframes.sass */
    0% {
      opacity: 1;
      display: block;
    }
  
    /* line 23, ../sass/_keyframes.sass */
    99% {
      opacity: 0;
      display: block;
    }
  
    /* line 26, ../sass/_keyframes.sass */
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  @-o-keyframes offline-fadeout-and-hide {
    /* line 20, ../sass/_keyframes.sass */
    0% {
      opacity: 1;
      display: block;
    }
  
    /* line 23, ../sass/_keyframes.sass */
    99% {
      opacity: 0;
      display: block;
    }
  
    /* line 26, ../sass/_keyframes.sass */
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  @keyframes offline-fadeout-and-hide {
    /* line 20, ../sass/_keyframes.sass */
    0% {
      opacity: 1;
      display: block;
    }
  
    /* line 23, ../sass/_keyframes.sass */
    99% {
      opacity: 0;
      display: block;
    }
  
    /* line 26, ../sass/_keyframes.sass */
    100% {
      opacity: 0;
      display: none;
    }
  }
  
  @-webkit-keyframes offline-rotation {
    /* line 64, ../sass/_keyframes.sass */
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
  
    /* line 66, ../sass/_keyframes.sass */
    100% {
      transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      -moz-transform: rotate(359deg);
      -ms-transform: rotate(359deg);
      -o-transform: rotate(359deg);
    }
  }
  
  @-moz-keyframes offline-rotation {
    /* line 64, ../sass/_keyframes.sass */
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
  
    /* line 66, ../sass/_keyframes.sass */
    100% {
      transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      -moz-transform: rotate(359deg);
      -ms-transform: rotate(359deg);
      -o-transform: rotate(359deg);
    }
  }
  
  @-ms-keyframes offline-rotation {
    /* line 64, ../sass/_keyframes.sass */
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
  
    /* line 66, ../sass/_keyframes.sass */
    100% {
      transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      -moz-transform: rotate(359deg);
      -ms-transform: rotate(359deg);
      -o-transform: rotate(359deg);
    }
  }
  
  @-o-keyframes offline-rotation {
    /* line 64, ../sass/_keyframes.sass */
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
  
    /* line 66, ../sass/_keyframes.sass */
    100% {
      transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      -moz-transform: rotate(359deg);
      -ms-transform: rotate(359deg);
      -o-transform: rotate(359deg);
    }
  }
  
  @keyframes offline-rotation {
    /* line 64, ../sass/_keyframes.sass */
    0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
  
    /* line 66, ../sass/_keyframes.sass */
    100% {
      transform: rotate(359deg);
      -webkit-transform: rotate(359deg);
      -moz-transform: rotate(359deg);
      -ms-transform: rotate(359deg);
      -o-transform: rotate(359deg);
    }
  }
  
  /* line 21, ../sass/offline-theme-default.sass */
  .offline-ui {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    font-family: "Helvetica Neue", sans-serif;
    padding: 1em;
    top: 1em;
    width: 38em;
    max-width: 100%;
    overflow: hidden;
  }
  @media (max-width: 38em) {
    /* line 21, ../sass/offline-theme-default.sass */
    .offline-ui {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      top: 0;
    }
  }
  /* line 34, ../sass/offline-theme-default.sass */
  .offline-ui .offline-ui-content:before {
    line-height: 1.25em;
  }
  /* line 37, ../sass/offline-theme-default.sass */
  .offline-ui .offline-ui-retry {
    position: absolute;
    right: 3em;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    line-height: 3.5em;
    height: 3.5em;
    margin: auto;
    padding: 0 1em;
  }
  /* line 50, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-up {
    -webkit-animation: offline-fadeout-and-hide forwards 0.5s 2s;
    -moz-animation: offline-fadeout-and-hide forwards 0.5s 2s;
    -ms-animation: offline-fadeout-and-hide forwards 0.5s 2s;
    -o-animation: offline-fadeout-and-hide forwards 0.5s 2s;
    animation: offline-fadeout-and-hide forwards 0.5s 2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #d6e9c6;
    color: #468847;
  }
  /* line 55, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-down {
    -webkit-animation: offline-fadein 0.5s;
    -moz-animation: offline-fadein 0.5s;
    -ms-animation: offline-fadein 0.5s;
    -o-animation: offline-fadein 0.5s;
    animation: offline-fadein 0.5s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ec8787;
    color: #551313;
  }
  /* line 60, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-down.offline-ui-connecting, .offline-ui.offline-ui-down.offline-ui-waiting {
    background: #f8ecad;
    color: #7c6d1f;
    padding-right: 3em;
  }
  /* line 65, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-down.offline-ui-connecting:after, .offline-ui.offline-ui-down.offline-ui-waiting:after {
    -webkit-animation: offline-rotation 0.7s linear infinite;
    -moz-animation: offline-rotation 0.7s linear infinite;
    -ms-animation: offline-rotation 0.7s linear infinite;
    -o-animation: offline-rotation 0.7s linear infinite;
    animation: offline-rotation 0.7s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    content: " ";
    display: block;
    position: absolute;
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1em;
    width: 1em;
    border: 2px solid rgba(0, 0, 0, 0);
    border-top-color: #7c6d1f;
    border-left-color: #7c6d1f;
    opacity: 0.7;
  }
  /* line 82, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting {
    padding-right: 11em;
  }
  /* line 85, ../sass/offline-theme-default.sass */
  .offline-ui.offline-ui-down.offline-ui-waiting.offline-ui-reconnect-failed-2s {
    padding-right: 0;
  }






















  /*
  /$$$$$$  /$$$$$$$  /$$$$$$$  /$$$$$$$$ /$$$$$$$ 
 /$$__  $$| $$__  $$| $$__  $$| $$_____/| $$__  $$
| $$  \ $$| $$  \ $$| $$  \ $$| $$      | $$  \ $$
| $$  | $$| $$$$$$$/| $$  | $$| $$$$$   | $$$$$$$/
| $$  | $$| $$__  $$| $$  | $$| $$__/   | $$__  $$
| $$  | $$| $$  \ $$| $$  | $$| $$      | $$  \ $$
|  $$$$$$/| $$  | $$| $$$$$$$/| $$$$$$$$| $$  | $$
 \______/ |__/  |__/|_______/ |________/|__/  |__/
                                                  

  */

  


  .ofield {
    display: flex;
    flex-flow: column-reverse;
    margin-bottom: 1em;
  }
  /**
  * Add a transition to the label and input.
  * I'm not even sure that touch-action: manipulation works on
  * inputs, but hey, it's new and cool and could remove the 
  * pesky delay.
  */
  .ofield label, .ofield input {
    transition: all 0.2s;
    touch-action: manipulation;
  }

  .orow select {
    font-size: 1em;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    width:90%;
    /*text-align: center;*/
  }

  .ofield input {
    font-size: 1em;
    border: 0;
    border-bottom: 1px solid #ccc;
    font-family: inherit;
    -webkit-appearance: none;
    border-radius: 0;
    padding: 0;
    cursor: text;
    width:90%;
    /*text-align: center;*/
  }
  
  .ofield input:focus {
    outline: 0;
    border-bottom: 1px solid #666;
  }
  
  .ofield label {
    /*text-transform: uppercase;*/
    letter-spacing: 0.05em;
  }



/* No arrows on size inputs Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* No arrows on size inputs  Firefox */
input[type=number] {
  -moz-appearance: textfield;
}





  /**
  * Translate down and scale the label up to cover the placeholder,
  * when following an input (with placeholder-shown support).
  * Also make sure the label is only on one row, at max 2/3rds of the
  * field—to make sure it scales properly and doesn't wrap.
  */
  .ofield input:placeholder-shown + label {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform-origin: left bottom;
    transform: translate(0, 2.125rem) scale(1.5);
  }
  /**
  * By default, the placeholder should be transparent. Also, it should 
  * inherit the transition.
  */
  ::-webkit-input-placeholder {
    opacity: 1;
    transition: inherit;
  }
  /**
  * Show the placeholder when the input is focused.
  */
  input:focus::-webkit-input-placeholder {
    opacity: 1;
  }
  /**
  * When the element is focused, remove the label transform.
  * Also, do this when the placeholder is _not_ shown, i.e. when 
  * there's something in the input at all.
  */
  input:not(:placeholder-shown) + label,
  input:focus + label {
    transform: translate(0, 0) scale(1);
    cursor: pointer;
    color: #75a8de;
  }


  .order_label {
    color: #75a8de;
  }

  .orow {
    margin-top: 1em;
    display:inline-flex;
    position: relative;
  }



  /*
  .input-group {
    display: table;
    width: 100%;
    text-align: center;
  }
  .input-group > .ofield {
    display: table-cell;
    width: 50%;
  }
  */


  