@media screen and (max-width: 596px) {
    .no-phone {
        display:none
    }
}
@media screen and (min-width: 596px) {
    .only-phone {
        display:none
    }
}
@media screen and (max-width: 768px) {
    .no-tablet {
        display:none
    }
}
@media screen and (min-width: 768px) {
    .only-tablet {
        display:none
    }
}

header {
  position: relative;
  z-index: 11;
}
header .container-fluid {
  padding: 0 40px;
}

.logo {
  max-width: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0 0;
}
.logo img {
  width: 100%;
}

.header-top {
  font-family: "CTCSplashRounded", sans-serif;
  height: 65px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  padding: 8px 0;
  font-size: 25px;
}

.customize-support .header-top {
  top: 32px;
}

.menu {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  /*margin: 0 0 -26px;*/
  margin: 0;
}
.menu > li {
  padding: 0 15px;
}
.menu > li:last-child {
  padding-right: 0;
}
.menu > li:last-child .dropdown-menu {
  transform: none;
  left: auto;
  right: 0;
}
.menu > li:last-child .dropdown-menu::before {
  left: 80%;
}
.menu > li > a {
  color: #333333;
  /*font-size: 25px;*/
  font-size: 18px;
  font-weight: 600;
}
.menu > li > a:hover, .menu > li > a:focus {
  color: rgba(0, 0, 0,0.7);
}
.header-bottom {
  background: rgba(255,204,1,1);
  color: #333333;
  font-family: "CTCSplashRounded", sans-serif;
  margin-top: 65px;
}

.nav-menu-category {
  /* border-top: 1px solid #fff; */
  width: 100%;
  padding: 10px 0;
}

.menu-category {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  justify-content: center;
  margin: 0 0 -26px;
}
.menu-category > li:first-child {
  margin-right: 50px;
}
.menu-category > li > a {
  font-size: 25px;
  font-weight: normal;
  color: #333333;
  padding-right: 15px;
  padding-left: 15px;
}

.top-menu-header a {
  color: #333333; 
  display: inline; 
  font-weight: bold;
}

.btn-search-fixed {
  top: 200px;
  right: 50px;
  width: 82px;
  height: 82px;
  z-index: 10;
  position: fixed;
  border: 1px solid #6f112b;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  will-change: transform;
  transition: transform 0.2s ease-in-out;
  overflow: hidden;
}
.btn-search-fixed:hover {
  transform: scale(1.1);
}

.search-wrapper-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 12;
  padding: 45px 0;
  transform: translateY(-100%);
  transition: all ease 0.3s;
  opacity: 0;
}
.search-wrapper-fixed.active {
  transform: translateY(0);
  opacity: 1;
}

.form-search {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.form-search label {
  margin: 0;
}
.form-search input {
  width: 100%;
  padding: 0 55px;
}
.form-search [type=submit] {
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: 60px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.search-wrapper__close {
  margin: 0 0 0 20px;
  max-width: 28px;
  min-width: 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-burger {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /*width: 28px;*/
  width: 50px;
  height: 20px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.btn-burger span {
  background: #333333;
  width: 100%;
  height: 3px;
  display: block;
  transition: 0.3s ease-in-out;
}
.btn-burger.click span {
  position: absolute;
  left: 0;
  top: 8px;
}
.btn-burger.click span:nth-child(1) {
  transform: rotate(45deg);
}
.btn-burger.click span:nth-child(2) {
  opacity: 0;
}
.btn-burger.click span:nth-child(3) {
  transform: rotate(-45deg);
}

.btn-scroll-top {
  position: fixed;
  z-index: 1000;
  left: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  display: none;
}
.btn-scroll-top:hover {
  opacity: 0.9;
}