*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    /* font-family: Arial, Helvetica, sans-serif;
    
    */
    /* background: #f3f3f3; */
}

@media screen and (min-width: 1600px){
    body{
        font-size: 18px;
    }
}


img{
    /* max-width: 100%;
     height: auto;*/
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.flex{
    display:flex;
    justify-content: space-between;
}

.flex > *{
    flex:1;
}




#popup{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
    top:0;
    left:0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -2;
    opacity: 0;
}

#close{
    position: absolute;
    right:-1em;
    top:-1em;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 5px 10px;
    box-shadow: 1px 1px 15px 10px rgba(0,0,0,0.5);

}

#popup.on{
    z-index: 2;
    opacity: 1;
    transition: 1s cubic-bezier(0.6, -0.28, 0.235, 0.045);

}

#popup .imgContent{
    background-color: #fff;
    max-width: 600px;
    box-shadow: 1px 1px 15px 10px rgba(0,0,0,0.5);
    padding:1em;
    position: relative;
}

#popup .imgContent img{
    max-height: 500px;
}

footer{
    border-top:5px solid #efa41d;
    color:#fefefe;
    background: #666;;
    /* margin:1em; */
    display: flex;
    align-items:center;
    padding:1em 2em !important;
}


footer a{
    color:inherit;
    display: block;
    margin-bottom: 0.5em;
    font-size: 1em;;
    position: relative;

}

footer a:not(:last-child):after{
    content:"";
    width:1px;
    height:10px;
    margin:0 0.5em;
    background: #f3f3f3;
    display: inline-block;
}
footer .nolinebar:after{width:0px !important; height:0px !important;}
footer a:hover{
    text-decoration: underline;
}

h1{
    color:#efa41d;
    font-size: 3em;;
}

header,  footer{
    padding:1em;
    width:100%;
}

.logo{
    max-width: 250px;
    flex:auto;
}

.link{
    transition: 1s ease;
}

.link:after{
    content:"";
    width:0;
    height:0;
    display: inline-block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #444;
    transition: 1s ease;

    margin-left:0.5em;

}

.link:hover{
    color: #0a0ac5;
}
.link:hover:after{
    border-left: 5px solid #0a0ac5;
}

.wrapper{
    max-width:100%;
    max-width:1800px;
    margin:auto;
    position: relative;
    /* z-index: ; */
    background: linear-gradient(90deg, white 50%, #f3f3f3 50%);
}

.wrapper .section{
    position: relative;
}

@media screen and (min-width:901px){
    .wrapper .section article{
        margin:1em 2em;
    }
}



dl{
    /* border:1px solid red; */
    margin-bottom: 2em;
    font-size: 1.1em;
    padding-right:2em;
}

dl dt span{
    font-weight: bold;
}

dl dd{
    margin:0.5em 0;
}

dl.list dd{
    position: relative;
    padding-left:10px;
}

dl.list dd:before{
    content: "";
    width:5px;
    height:5px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top:8px;
    /*bottom:0;*/
    left:0;
    margin:auto;
}

dl.list img{
    margin:0.5em;
}

/* .placeholder{ margin-right: 3em;} */
.placeholder span{
    display: block;
    text-align: center;
}
.placeholder span img{
    max-width: 80%;
    /* border:1px solid #eee; */
}


article h3{
    margin-bottom:1em;
    font-size: 1.5em;
}
article h4{
    margin-bottom:1em;
    font-size: 1.2em;
}

.selectMe{
    max-width: 90px;;
    position: relative;
    margin-left:auto;
    flex:auto;
}


.selectMe .visibleMe{
    display: block;
    cursor: pointer;
    position: relative;
    width: 6em;
    display: flex;
    align-items: center;
}

.selectMe .visibleMe a{
    pointer-events:none;
}


.selectMe .visibleMe:before{
    content:"";
    width: 1px;
    height: 100%;
    margin-right: 0.5em;
    background-color: #ccc;

}

.selectMe .visibleMe:after{
    content:"";
    /* position: absolute; */
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    transition: 0.1s ease;;
    margin-left:0.5em;
}



.selectMe .visibleMe.active:after{
    border-bottom: 5px solid #000;
    border-top:0;

}


.selectMe .visibleMe span{
    display: none;
}
.selectMe ul, .selectMe ul li{
    list-style:none;
    font-size:0.9em;
}

.selectMe ul li.selected{
    display: flex;
    align-items: center;
    background-color: #ddd;


    border-bottom:1px solid #f3f3f3;
}

.selectMe ul li a{
    color: inherit;
    display: flex;
    padding:0.5em;
    align-items: center;
    text-decoration: none;
}

.selector{
    display: flex;
    border:1px solid #f2f2f2;
    background: #f4f4f4;
    padding:0.3em;
    border-radius: 5px;
}

#globe{
    margin-right:5px;
}

.selectMe ul{
    background:#f3f3f3;
    max-width:550px;
    min-width: 250px;

    overflow-y: scroll;
    height:0;
    position: absolute;
    right: 0;;
    z-index: 10;
}

.selectMe ul.active{
    height:300px;
    border:1px solid #ccc;

    box-shadow: 1px 2px 10px rgba(0,0,0,0.5);

}

.selectMe input{
    border:1px solid #ccc;
    outline: none;
    border-radius: 5px;;
    padding: 0.5em;
    margin:0.5em;
    width:90%;
}

.selectMe ul li{

    white-space: nowrap;
}

.selectMe ul li:hover,
.selectMe ul li:active,
.selectMe ul li:focus{
    background-color: lightblue;
}

.selectMe ul li span{
    margin-right:0.5em;
    margin-left:0.5em;
    display: inline-block;
}

/*
.scenerio{
      flex-grow: 0.2;
    margin-left: 0.5em;
    margin-top: 4em;
}
.photo_container { position: relative; }

#photo_container1{
  margin-top:1em;
}

.thumbnail {
  overflow: hidden;
  margin: 0 0 10px;
  padding: 0;
  width: 100%;
}

.thumbnail li {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
  list-style: none;
  border:1px solid #f3f3f3;
  width:50px;
  height:50px;
  overflow: hidden;
  text-align: center;
}

.thumbnail li:last-child { margin-right: 0; }
.thumbnail li a{ display: block;}
.thumbnail li img {
  max-width: 60%;
  height:auto;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.thumbnail li.current img {
  opacity: 1;
  filter: alpha(opacity=100);
}

.main_photo {
  position: relative;
  height: 490px;
  border: solid 15px #fff;
  box-shadow: 0 1px 8px #bbb;

}

.main_photo img {
  position: absolute;
  top: 0;

  max-height: 400px !important;
  left:0;
  right:0;
  margin:auto;
}

*/

section.viewable{
    display:flex !important;
    justify-content: flex-start;
    padding:2em 0 !important;

}

section.viewable aside:first-child{
    margin-right:2em;
}


@media screen and (max-width:900px){

    header.flex{
        flex-direction: row;
        align-items: center;
    }

    header,  footer{
        padding: 1em !important;
    }

    .wrapper section.viewable{
        padding:2em 0 !important
    }

    dl.list img {
        margin: 0em;
    }

    .wrapper .section article{
        padding:1em;

    }

    section.viewable{
        flex-direction: column;
    }
    section.viewable aside:last-child{ margin-top: 2em;}
}

@media screen and (max-width:640px) and (orientation: portrait){

    .flex{
        flex-wrap:wrap;
        flex-direction: column;
    }

    .wrapper{
        background: linear-gradient(180deg, white 50%, #f3f3f3 50%);
    }
    .wrapper .section article:first-child{
        background-color: #fff;;
    }


    section.viewable aside:first-child {
        margin-right: 0;
        display: flex;
        flex-wrap:wrap;
        justify-content: center;
        margin-bottom:2em;
        flex-direction: column;
    }
    section.viewable aside:last-child{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        text-align: center;
    }

    section.viewable aside{
        padding:0 1em;
    }

}

@media screen and (max-width:520px){
    footer{
        flex-direction: column;
    }

    footer a:not(:last-child):after{
        width: 100%;
        height: 1px;;
        margin: 0;
    }

}

.slider a{
    cursor: pointer;

}




.lang_image{
    background-repeat:no-repeat;
    background-size:contain;
    width:22px;
    height:20px;
    display:block;
    background-position:center;
}

.addOn{
    cursor:pointer;
}

.addOn img {
    max-width: 100%;
    height: auto;
    margin-top: 2em;
}

.responsive{
    max-width: 100%;
    height: auto;
}

/*
.slider{
      width:400px;
    }

    .slider1{
      width:200px;
    }
*/
#slider, #slider1{

  
    border-radius: 0;
    margin: auto;


}

#slider  .flex-viewport, 
#slider1 .flex-viewport{
  box-shadow: 1px 1px 10px 5px rgba(0,0,0,0.05);
    background-color: #fff;
}


#carousel, #carousel1{
    border-radius: 0;
    margin-top:5px;
}

#carousel .slides,
#carousel1 .slides {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

#carousel .slides li,
#carousel1 .slides li{
    opacity: 0.5;
    border: 1px solid #ccc;
    width: 80px !important;
    padding: 0.25em;
    cursor: pointer;
}

#carousel1 .slides li{
    width: 50px !important;
}


#carousel .slides li.flex-active-slide,
#carousel1 .slides li.flex-active-slide{
    opacity: 1;
    /* background: green; */
    box-shadow: 1px 2px 19px 5px rgba(0,0,0,0.25);
}

@media screen and (min-width:901px){
    section.viewable aside:last-child{ width:40%;}
    section.viewable aside:first-child{width:54%;}

}
@media screen and (min-width:640px){
    .wrapper .section article{
        width: 46%;
        flex: 1 0 40%;
    }
}

@media screen and (min-width:480px) and (orientation: landscape){
    .wrapper .section article{
        width: 46%;
        flex: 1 0 40%;
    }
}

#carousel .slides li {
    height: 80px !important;
}
#carousel.flexslider .slides img{
   max-height: 70px;
}

#carousel1 .slides li {
    height: 50px !important;
}
#carousel1.flexslider .slides img{
   max-height: 40px;
}

#slider .slides > li {
    max-height: 350px;
}

#slider.flexslider .slides img{
   max-height: 320px;
}

#slider1 .slides > li {
    max-height: 200px;
}

#slider1.flexslider .slides img{
   max-height: 180px;
}

.slider, #slider{
    height: auto;
}

section.viewable{
    min-height:200px;
}

#carousel .flex-direction-nav,
#carousel1 .flex-direction-nav{
    display:none !important;
}


.loading{
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    margin: 2em auto 0;
    border-radius: 50%;
    padding: 5px;
    max-width: 30%;
}


#popup .imgContent #close:after{display: none;}
#popup .imgContent #close { color: #000; display: flex; align-items: center; justify-content: center; }
#popup .imgContent .content{color: #000;  max-height: 500px; overflow-y:scroll; }
#popup  h2{ background-color: #ffa500; font-size: 18px; padding: 5px;}
#popup h5{ font-size: 16px; padding:5px;}
#popup p{ padding:5px; }
#popup .listNum { list-style: decimal; padding-left:20px; }
#popup li{ padding:5px ; }
#popup .imgContent{ margin:1em; }
 .content{ display: none;  }

@media screen and (max-height: 500px){
    #popup .imgContent .content{  max-height: 300px; }
 }
@media screen and (max-width: 400px){
    #popup .imgContent { max-width: 300px; }
 }

 .table-section{
    /* background-color: #FFF; */
    padding: 7px;
    /* font-size: 10px; */
    font-weight: bold;
  }
  table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    font-size: 10px;
  }
  
  td, th {
    text-align: left;
    padding: 5px;
  }
  
  tr:nth-child(even) {
    background-color: #93e6fa;
  }
  .product-text{
    color: #6026c0;
    text-transform: capitalize;
    font-size: 20px;
  }
  .new {
    padding: 50px;
  }
  
  .form-group {
    display: block;
    margin-bottom: 15px;
  }
  
  .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .form-group label {
    position: relative;
    cursor: pointer;
  }
  
  .form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
      border: 2px solid #1e1f20;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
      inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #1e1f20;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }