@charset "UTF-8";
@import url(sprite.css);
@font-face{
  font-family:OpenSans;
  font-display:swap;
  src:url(../fonts/Open-Sans.ttf) format("TrueType")
}
@font-face{
  font-family:OpenSans;
  font-display:swap;
  font-weight: bold;
  src:url(../fonts/OpenSans-Bold.ttf) format("TrueType")
}
@font-face{
  font-family:OpenSans;
  font-display:swap;
  font-weight: 600;
  src:url(../fonts/OpenSans-Semibold.ttf) format("TrueType")
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}
:before, :after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-family:OpenSans,Arial,sans-serif;
  font-display:swap;
  font-size:16px;
  line-height: 26px;
  --border-color: #f2f2f2;
  --highlight-color: #47bbfe;
  --textColor: #2e2e2e;
  --textSubColor: #626262;
  color: var(--textColor);
}
body{
  font-family:OpenSans,Arial,sans-serif;
  font-display:swap;
  margin:0;
  padding:88px 0 0 0;
}
a[href],a:hover{
  text-decoration: none;
  color: var(--highlight-color)
}
img{
  max-width: 100%;
  width: auto;
  height: auto;
}
input[type="text"],
input[type="number"]{
  font-size: 16px;
  font-family: OpenSans,Arial,sans-serif;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
.container {
  margin-right: auto;
  margin-left: auto
}
table,iframe{
  max-width: 100%;
}
.icon{
    display: inline-block;
}
@media (min-width: 768px) {
  .container {
      width:750px
  }
}

@media (min-width: 992px) {
  .container {
      width:970px
  }
}

@media (min-width: 1200px) {
  .container {
      width:90%;
      max-width:1200px;
  }
}
h1{
    font-weight: 600;
}
h2{
    font-size:36px;
    font-weight: 600;
    line-height: 48px;
}
.logo{
    width:200px;
}
.cookie_info{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.cookie_get{
    margin-left: 24px;
    background-color: var(--highlight-color);
    border-radius: 4px;
    padding: 0 12px;
    color: #fff;
    cursor: pointer;
}
.cookie_get:hover{
    color:#fff;
}

.global-nav{
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    z-index: 9;
    background-color: #fff;
    left: 0;
    top: 0;
}
.global-nav .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    position: relative;
}
.navigator{
    height: 100%;
    padding-top:10px;
}
.navigator.hidden>div,
.navigator.hidden>a,
.navigator.hidden>span{
    display: none;
}
.navigator>a{
    font-weight: 600;
    margin: 8px 20px 0;
    color: var(--textColor)
}
.navigator>a:hover{
    color:var(--highlight-color)
}
.nav-product {
    display: inline-flex;
    margin-right: 25px;
    height: 100%;
}
.nav-product >span{
    font-weight: 600;
    color: var(--textColor);
    cursor: pointer;
    display: flex;
    align-items: center;
}
.nav-product >span::after{
    content:'';
    background-color: var(--textColor);
    mask-image: url(/public/images/down.svg);
    -webkit-mask-image: url(/public/images/down.svg);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.global-product{
    display: none;
    flex-wrap: wrap;
    position: absolute;
    background-color: #fff;
    padding: 15px 5px;
    box-shadow: 0 12px 18px rgba(0,0,0,.18);
    border-radius: 0 0 16px 16px;
    right: 0;
    width: 100%;
    top: 100%;
    border-top: 1px solid var(--border-color);
}
.global-product::before,
.global-product::after{
    content: '';
    position: absolute;
    top: 20px;
    left: 33.33333333%;
    height: calc(100% - 40px);
    width: 1px;
    background-color: var(--border-color);
}
.global-product::after{
    left: 66.6666666%;
}

.global-product a{
    padding: 15px 25px;
    width: calc(33.33333333% - 40px);
    margin:5px 20px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}
.global-product a:hover{
    background-color: #f4f4f4;
}
.global-product a div:nth-child(1){
    width: 45px;
    margin-right: 15px;
}
.global-product a div:nth-child(1){
    display: flex;
    justify-content: center;
    align-items: center;
}
.global-product a div:nth-child(2){    
    max-width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
}
.global-product p{
    margin: 0;
    color:var(--textColor);
    font-weight: 600;
    position: relative;
}
.global-product p.hot::after{
    content: 'HOT';
    color: #fff;
    background-color: #ff7e06;
    border-radius: 4px;
    font-size: 13px;
    padding: 0 4px;
    line-height: 18px;
    position: absolute;
    bottom: 4px;
    margin-left: 8px;
}
.global-product a span{
    font-weight: normal;
    color:var(--textSubColor);
    font-size: 14px;
    line-height: 20px;
}
.navigator>span{
    cursor: pointer;
}
.global-search{
    display: none;
    width: 50%;
    max-width: 400px;
}
.global-search.active{
    display: flex !important;
    width: 400px;
    align-items: center;
    height: 100%;
}
.global-search form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.topsearch{
    cursor: pointer;
}
.global-search input{
    border: none;
    margin: 0 8px;
    padding: 4px;
    height: 40px;
    width: calc(100% - 60px);
    outline: none;
}
.topclose{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.topclose img{
    width: 20px;
    height: 20px;
}
.scrolltop{
    background-color: #0e88e4;
    position: fixed;
    right: -45px;
    bottom: 10%;
    text-align: center;
    padding: 4px;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    display: flex;
    transition: all .3s;
    -webkit-transition: all .3s;
}
.scrolltop::after{
    content:'';
    background-color: #fff;
    mask-image: url(/public/images/down.svg);
    -webkit-mask-image: url(/public/images/down.svg);
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 4px;
    -webkit-mask-size: cover;
    mask-size: cover;
    transform: rotate(180deg);
}
  .scrolltop.active{
    right: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
  }
  .scrolltop img{
    height: 16px !important;
  }
.copyright{
    background-color: #262626;
    color: #666;
    font-size: 14px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer{
    background-color: #333;
    padding: 50px 0 24px 0;
}
.footer>.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer>.container>div:nth-child(1){
    width:200px;
}
.footer>.container>div:nth-child(2){
    width:calc(100% - 240px);
    color: #999;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer>.container>div:nth-child(2) label{
    color:#fff;
    font-size: 18px;
    margin-bottom: 16px;
    display: inline-block;
}
.footer>.container>div:nth-child(2) a{
    color:#999;
    font-size: 14px;
    line-height: 20px;
}
.footer>.container>div:nth-child(2) a:hover{
    text-decoration: underline;
}
.footer ul{
    list-style: none;
    padding: 0;
    margin:0
}
.footer>.container>div:nth-child(2)>div:nth-last-child(1){
    width:40%;
}
.change_language {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    color: #999;
    cursor: pointer;
    position: relative;
    font-size: 13px;
    margin-top: 24px;
}

.change_language>label {
    position: relative;
    display: flex;
    align-items: center;
}

.change_language>label::after {
    content: '';
    background-color: #999;
    mask-image: url(/public/images/down.svg);
    -webkit-mask-image: url(/public/images/down.svg);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 4px;
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.change_language >label {
    cursor: inherit;
}

.change_language .languages {
    display: none !important;
    position: absolute;
    bottom: calc(100% + 12px);
    display: flex;
    flex-direction: column;
    background-color: #fff !important;
    padding: 12px 32px !important;
    border-radius: 8px;
    width: auto !important;
    left: 28px;
    box-shadow: 0 0 8px rgba(0,0,0,.4);
    line-height: 26px;
    white-space: nowrap;
    z-index: 2;
}

.change_language .languages::after {
    content: '';
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: calc(100% - 1px);
    left: 50px;
}

.change_language .languages a {
    margin: 4px 0;
    color: #9aa5b0 !important;
    text-decoration: none;
    font-size: 13px;
}

.change_language .languages a:hover {
    color: var(--highlight-color) !important;
}

.change_language.active .languages {
    display: flex !important;
}

.change_language.active >label {
    color: var(--highlight-color);
}


.change_language.active>label::after {
    transform: rotate(180deg);
    transition: all .3s;
    -webkit-transition: all .3s;
}
.footer_social{
    margin-top: 24px;
    display: flex;
    align-items: center;
}
.footer_social >a{
    margin-right: 12px;
    cursor: pointer;
    text-decoration: none !important;
}
.footer_social >a:last-of-type{
    margin-right: 0;
}
.footer_social .footer_facebook::before{
    content: "";
    background-image: url(/public/images/ico-facebook.png);
    display: inline-block;
    width: 40px;
    height: 39px;
}
.footer_social .footer_facebook:hover::before{
    background-image: url(/public/images/ico-facebook_selected.png);
}
.footer_social .footer_twitter::before{
    content: "";
    background-image: url(/public/images/ico-twitter.png);
    display: inline-block;
    width: 32px;
    height: 30px;
}
.footer_social .footer_twitter:hover::before{
    background-image: url(/public/images/ico-twitter_selected.png);
}
.footer_social .footer_youtube::before{
    content: "";
    background-image: url(/public/images/ico-youtube.png);
    display: inline-block;
    width: 45px;
    height: 32px;
}
.footer_social .footer_youtube:hover::before{
    background-image: url(/public/images/ico-youtube_selected.png);
}

@media (min-width: 481px) {
    .nav-product:hover >span{
        color:var(--highlight-color)
    }
    .nav-product:hover >span::after{
        background-color: var(--highlight-color);
        transform: rotate(180deg);
        transition: all .3s;
        -webkit-transition: all .3s;
    }
    .nav-product:hover .global-product{
        display: flex;
    }
}
@media (max-width: 480px) {
    h1{
        font-size: 26px !important;
        text-align: center !important;
        line-height: 36px;
    }
    h2{
        font-size: 24px !important;
        text-align: center !important;
        line-height: 34px;
    }
    .container {
        width:100%;
        padding:0 15px;
    }
    .navigator{
        position: fixed;
        left: 0;
        top: 88px;
        width: 100%;
        z-index: 99;
        background-color: #fff;
        display: none;
        flex-direction: column;
        height: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .16);
        max-height: calc(100% - 88px);
    }
    .global-nav .menu {
        background: url(/public/images/menu_ico.png);
        width: 42px;
        height: 30px;
        display: flex;
        margin-top: 20px;
        position: absolute;
        right: 10px;
        text-decoration: none;
        cursor: pointer;
    }
    .global-nav .menu.active {
        background-position: 0 30px;
    }
    .global-nav .menu.active+.navigator{
        display: flex;
        overflow-y: scroll;
    }
    .navigator>a{
        margin: 0;
    }
    .navigator>div,
    .navigator>a{
        padding: 8px 15px;
        display: block;
        border-bottom: 1px solid #eee;
        width: 100%;
        position: relative;
    }
    .global-search{
        display: none !important;
    }
    .global-search.active{
        display: flex !important;
        position: absolute;
        background-color: #fff;
        height: 42px;
        bottom: 0;
    }
    .navigator>span{
        margin: 8px 15px 15px;
    }
    .nav-product >span{
        width:100%;
    }
    .nav-product >span::after{
        position: absolute;
        right: 24px;
        top: 12px;
    }
    .nav-product.active >span{
        color:var(--highlight-color)
    }
    .nav-product.active >span::after{
        background-color: var(--highlight-color);
        transform: rotate(180deg);
        transition: all .3s;
        -webkit-transition: all .3s;
    }
    .nav-product.active .global-product{
        display: flex;
    }
    .global-product{
        position: relative;
        box-shadow: none;
        width: 100%;
    }
    .global-product::before,
    .global-product::after{
        display: none;
    }
    .global-product a{
        width: 100%;
        padding: 15px 0;
    }

    .navigator.hidden>div, .navigator.hidden>a, .navigator.hidden>span{
        display: block;
    }
    .cookie_info{
        display: inline-block;
        padding: 12px;
    }
    .cookie_get{
        white-space: nowrap;
    }
    .footer>.container{
        flex-wrap: wrap;
    }
    .footer>.container>div:nth-child(1){
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
    .footer>.container>div:nth-child(2){
        width: 100%;
        flex-wrap: wrap;
    }
    .footer>.container>div:nth-child(2)>div,
    .footer>.container>div:nth-child(2)>div:nth-last-child(1){
        width:100%;
    }
    .footer ul{
        display: none;
    }
    .footer>.container>div:nth-child(2) label{
        margin: 0;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #888;
        cursor: pointer;
        position: relative;
    }
    .footer>.container>div:nth-child(2) label::after{
        content: '';
        background-color: #999;
        mask-image: url(/public/images/down.svg);
        -webkit-mask-image: url(/public/images/down.svg);
        display: inline-block;
        width: 20px;
        height: 20px;
        margin-left: 4px;
        -webkit-mask-size: cover;
        mask-size: cover;
        transition: all .3s;
        -webkit-transition: all .3s;
        position: absolute;
        top: 16px;
        right: 12px;
    }
    .footer>.container>div:nth-child(2)>div:last-of-type label{
        border-bottom:0;
        pointer-events: none;
    }
    .footer>.container>div:nth-child(2)>div:last-of-type label::after{
        display:none;
    }
    .footer>.container>div:nth-child(2) label.active::after{
        transform: rotate(180deg);
        transition: all .3s;
        -webkit-transition: all .3s;
    }
    .footer>.container>div:nth-child(2) label.active+ul{
        display: initial;;
    }
    .footer>.container>div:nth-child(2) label.active+ul a{
        display: block;
        padding: 8px 24px;
    }
    .change_language{
        justify-content: center;
    }
}