
/* ----------------------------------------------------------------
     [ Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

.clearfix{
  clear: both;
}

@font-face {
  font-family: Omnesbold;
  src: url(../font/Omnesbold.ttf);
}

:root {
  --fontprimary: 'Poppins', sans-serif;
  --fontsecondary: 'Poppins', sans-serif;
  --fontkid: Omnesbold;

  --fontsizeh1: 50px;
  --fontsizeh2: 40px;
  --fontsizeh3: 30px;
  --fontsizep: 18px;

  --colorprimary: #000000;
  --coloraccent: #FFB526;
  --colorwhite: #ffffff;
  --colorblack: #000000;
  --colorgrey: #adb5bd;
  --colorgold:#ffcc20;
  --colorgreen:#21c04e;

  --bgprimary: #f6f6f6;
  --bgdarkgrey: #111111;
  --bgaccent: #ffcc20;
  --bgwhite: #ffffff;
  --bgnav:#cfed88;
  --bgsky: #e7f3e3;
  --bgbutn: #00D0AC;
  --bgbutndark: #006B5E;

}

html{
  min-height: 100%;
}

body {
  background-color: var(--bgsky);
  background: url('../img/bgsky.jpg');
  color: var(--colorprimary);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  font-family: var(--fontprimary);
  overflow-x: hidden !important;
  height: 100%;
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*dust particle*/
#canvas{
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1345px;
  height: 100vh;
  max-height: 500px;
  margin: 0 auto;
  z-index:1;
  transform: translate(-50%, 0%);
  filter:brightness(500%);
}

section{
  background-color: var(--bgprimary);
  width: 100%;
  max-width: 1350px;
  margin:0 auto;
  position: relative;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: var(--colorlightgrey);
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1{
  font-family: var(--fontkid);
  font-size: var(--fontsizeh1);
  line-height: 120%;
  display: inline-block;
  font-weight: 700;
}

h2{
  font-family: var(--fontprimary);
  font-size: var(--fontsizeh2);
  line-height: 110%;
  font-weight: bold;
  display: inline-block;
}

h3{
  font-family: var(--fontprimary);
  font-size: var(--fontsizeh3);
  line-height: 100%;
  display: inline-block;
}

.container{
  position: relative;
  width: 100%;
  max-width: 1345px;
  padding: 50px;
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
}

.pos-re {
  position: relative;
  padding-left: 98px;
}


/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Buttons ]
-----------------------------------------------------------------*/
.butn-container{
  position: relative;
}

.butn {
  font-size: 16px;
  font-weight: 300;
  padding: 9px 30px;
  background: var(--bgbutn);
  color:var(--colorwhite)!important;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 400;
}

.butn:hover{
  background: var(--bgbutndark);
}

/*.butn span  {
  position: relative;
  z-index: 2;
  padding-top: 2px;
}

.butn:after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.2s;
  transition: width 0.1s;
  z-index: 1;
  opacity: 1;
  color:var(--colorprimary);
}

.butn:after{
  background: var(--bgbutndark);
  color:var(--colorprimary);
}


.butn:hover:after{
  width: 100%;
}

.butn:hover + .dotbtn {
  opacity: 1;
}*/

#ctabtn{
  font-size: 23px;
}

.tabbtn{
  background-color:var(--bgbutn);
  color:var(--colorwhite)!important;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Navbar ]
-----------------------------------------------------------------*/

.logo{
  max-width: 200px;
}

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border: 0;
  z-index: 9;
  min-height: 50px;
  padding: 15px 0px;
  background: var(--bgnav);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.useridtxt{
  font-size: 12px;
  text-align: right;
}

.fa-user{
  padding-left: 10px;
}

.navbar.fold{
  border-top:6px solid;
  border-color: var(--coloraccent);
  padding:0px;
  height:1px;
}

.menu {
  padding: 0;
  list-style: none;
  text-align: right;
}

.menu li {
  display: inline-block;
}

.nav-container {
  right:0px;
}

.tab {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: var(--colorprimary);
  margin: 0px;
  -webkit-transition: all .5s;
  transition: all .5s;
  line-height: 100%;
  /*letter-spacing: 1px;*/
  display: block;
  padding: 0.5rem 1rem;
}
.active-tab {
  color: var(--coloraccent)!important;
  text-align: center!important;
}


/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ scrollbar ]
-----------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 15px;
  background: var(--bgnav);
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  padding: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bgbutndark);
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bgbutndark);
}



/* ----------------------------------------------------------------
     [ Start Navbar ]
-----------------------------------------------------------------*/

section .navbarapp-container{
  position: relative;
  width: 98px;
  padding-left:0px!important;
  z-index: 999;
}
.navbarapp{
  position: fixed;
  background: var(--bgbutndark);
  width: 98px;
  height: 100vh;
}

.navblock{
  top: 0px;
  left: 0px;
  width: 98px;
  height: 68px;
  background: #25C0FC 0% 0% no-repeat padding-box;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.navbarapp a.active {
  overflow:hidden;
  border-right:10px solid rgba(0, 0, 0, 0);
  display: block;
}

.navblockhome{
  background: #25C0FC;
}
.navblockbook{
  background: #BD8FFE!important;
}
.navblockmusic{
  background: #F98BD3;
}
.navblockaccount{
  background: #FFB526;
}

.navblock-icon{
  width: 24px;
  height: 24px;
}

.logo-vertical{
  position: fixed;
  bottom: 40px;
  width: auto;
  height: 157px;
  padding-left:34px;
  z-index: -1;
}

/* ----------------------------------------------------------------
     [ Start signin ]
-----------------------------------------------------------------*/

@keyframes fadeIn{
  0% {
    opacity:0;
  }
  30% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}


.signin {
  position: fixed;
  top:0;
  left:0;
  z-index: 999;
  background: url('../img/signin_img.webp');
  color: var(--colorprimary);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  font-family: var(--fontprimary);
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

.signinbox-container{
  position: relative;
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.95) 40%,rgba(255,255,255,0.95) 50%,rgba(255,255,255,0.95) 60%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 100vw;
  height: 100%;
  animation: fadeIn ease 1.5s;
  -webkit-animation: fadeIn ease 1.5s;
  -moz-animation: fadeIn ease 1.5s;
  -o-animation: fadeIn ease 1.5s;
  -ms-animation: fadeIn ease 1.5s;
}

.signinbox{
  text-align: center;
  position: absolute;
  margin:auto;
  left:0;
  right: 0;
  top:0;
  bottom: 0; 
  height: 400px;
  padding: 20px;

  justify-content: center;
  align-items: center;
}

.signinbox p{
  font-weight: bold;
  font-size: 16px;
}

.inputContainer{
  margin:0 auto;
  width: 100%;
  max-width: 500px;
  height: auto;
  
}

.inputfield{
  width: 100%;
  border-radius: 40px;
  border: 1px solid #A5A5A5;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  background: #ffffff;
  height: 60px;
  padding: 0px 30px;
  margin-top:15px;
}

.signinbtn{
  margin:0 auto;
  width: 100%;
  max-width: 500px;
  background: var(--bgbutn);
  border-radius: 40px;
  border: none;
  padding: 13px;
  font-size: 20px;
  font-weight: bold;
  height: 60px;
  margin-top:15px;
}

.backhome{
  position: fixed;
  top:10px;
  right: 10px;
  z-index: 9999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bgprimary);
  padding:0px;
}
.backhome img{
  padding-bottom:5px;
}

/* ----------------------------------------------------------------
     [ Start Home ]
-----------------------------------------------------------------*/
.home_img{
  background: var(--bgprimary);
  position: relative;
  overflow: hidden;
}

.home_img .kidbook{
  position: absolute;
  left:150px;
  bottom:0;
  width: 100%;
  max-width: 280px;
  animation: giggle 5s linear infinite;
}

@keyframes giggle {
  0% {
    transform: translate(0,0);
  }
  5% {
    transform: translate(0,0);
  }
  7% {
    transform: translate(0px, 2px);
  }
  9% {
    transform: translate(0,0);
  }
  11% {
    transform: translate(0,1px);
  }
  13% {
    transform: translate(0,0);
  }
  15% {
    transform: translate(0,0.5px);
  }
  17% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(0,0);
  }
}

.home h3{
  font-size: 30px;
  line-height: 120%;
}

.hometext{
  position: absolute;
  top:0;
  left: 0;
  padding: 40px;
  padding-left:150px;
  color: var(--colorwhite);
  width: 100%;
  max-width: 740px;
}

.hometext h1{
  font-size: 50px;
}

.hometext p{
  font-size: 20px;
}

.signin_container{
  position: relative;
  margin:0 auto;
  height: auto;
  width: 100%;
  max-width:1350px;
}

.nav-item{
  position: absolute;
  right:15px;
  top:18px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  z-index: 999;
}
.signin_butn{
  display: inline-block;
  background-color: var(--bgbutn);
  color: var(--colorwhite) !important;
  padding: 10px;
  right: 70px;
  cursor: pointer;
  height: 30px;
}

.language_butn select{
  padding: 6px;
  border:none;
  height: 30px;
  background: var(--bgaccent);
  color:white;
}

/* ----------------------------------------------------------------
     [ End Home ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Products ]
-----------------------------------------------------------------*/

.products h3{
  padding-bottom: 5px;
  padding-left:10px;
  border-left:10px solid var(--coloraccent);
}

.productrow{
  padding:0px 0px;
  text-align: left;
}
.productrow h3{
  text-transform: capitalize;
  font-weight: bold;
}

.soundtrackcolumn-container{
  position: relative;
  left: 25%;
  transform: translateX(-25%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bookcolumn, .soundtrackcolumn, .bookcolumnseeall, .soundtrackcolumnseeall{
  cursor: pointer;
}

.soundtrackcover, .soundtrackseall, .bookcoverseeall{
  position: relative;
  overflow: hidden;
  padding: 0px 0px;
  background: var(--bgbutn);
  border-radius: 5px;
}
.soundtrackcover::before{
  content: url('../img/icon-music-circle.webp');
  position: absolute;
  width: 24px;
  height: 24px;
  padding:5px;
}
.bookcover{
  position: relative;
  overflow: hidden;
  padding: 0px 0px;
  background: var(--bgbutn);
  border-radius: 5px;
}

.booktitle span{
  font-size: 11px;
  line-height: 100%;
}

.fa-clock-o{
  color: var(--colorprimary);
}

.agelabel{
  padding: 5px;
  font-size: 12px;
  color: white;
  text-align: center;
  line-height: 120%;
  background: #00D0AC;
}

.label_toddler{
  background: #25C0FC;
}
.label_preschool{
  background: #BD8FFE;
}
.label_easyreader{
  background: #F98BD3;
}
.label_blank{
  color: #00D0AC;
}


.seealltxt_book, .seealltxt_soundtrack{
  position: absolute;
  margin:auto;
  left:0;
  right: 0;
  top:25%;
  text-align: center;
  font-size: 18px;
  color: var(--colorwhite);
}
.seealltxt_soundtrack{
  top:9%;
}
.booktitle{
  font-size: 14px;
  font-weight: 500;
  position: relative;
  text-align: center;
  line-height: 120%;
  padding: 5px;
  color:var(--colorprimary);
  min-height: 45px;
  padding-bottom:20px;
}

.bookcover img{
  height: 100%;
}

.bookcover img:hover, .soundtrackcover img:hover {
  filter:contrast(1.2);
  -webkit-transform: scale(1.03, 1.03);
  transform: scale(1.03, 1.03);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.booktitle:hover {
  text-decoration: underline;
}

.soundtracklist-container{
  padding-left:0px;
  padding-right:15px;
}
.soundtracklist{
  width: 100%;
  height: 70px;
  background: var(--bgwhite);
  position: relative;
  border:1px solid #dedede;
  border-radius: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 8px;
  overflow: hidden;
}
.soundtracklist_img{
  position: absolute;
  top:0;
  left:0;
  width:68px;
  height: 68px;
  border-radius: 5px 0px 0px 5px;
}

.soundtracklist:hover .soundtracklist_img, .soundtracklist:hover .play_soundtrack{
  filter:contrast(1.2);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.soundtracklisttitle{
  text-align: left;
  font-weight: 500;
  width:80%;
  vertical-align: middle;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left:80px;
}

.play_soundtrack{
  width: 48px;
  height: 48px;
  position: absolute;
  right:10px;
}

.img-verticalmiddle{
  position: relative;
}
.img-verticalmiddle img{
  position: absolute;
  margin:auto;
  top:0;
  bottom:0;
}

.img-verticalmiddle img{
  position: absolute;
  margin:auto;
  top:0;
  bottom:0;
}


/* ----------------------------------------------------------------
     [ End Products ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start books]
-----------------------------------------------------------------*/

.headsection.pos-re{
  padding-top: 0px;
}
.headsection .container{
  padding-bottom: 0px;
}
.category-butn, .category-butn-soundtrack {
  font-size: 16px;
  padding: 9px 30px;
  width: 100%;
  text-align: center;
  background: var(--bgbutn);
  color:var(--colorwhite)!important;
  border: 1px solid;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 400;
}
.category-butn.active, .category-butn-soundtrack.active {
  background: var(--bgbutndark);
}

.rowtab{
  max-width: 760px;
}

/* ----------------------------------------------------------------
     [ End books ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ search field ]
-----------------------------------------------------------------*/

.searchinput-container{
  width: 100%;
  max-width: 760px;
  border:#A5A5A5 solid 1px;
  position: relative;
  margin-bottom:-10px;
}

.searchinput-container input[type=text] {
  padding: 10px;
  font-size: 14px;
  border: none;
  float: left;
  width: 100%;
  background: #ffffff;
  height: 45px;
}

/* Style the submit button */
.searchbtn, .filterbtn {
  display: flex;
  float: right;
  width: 50px;
  padding: 10px;
  background:var(--bgbutn);
  color: white;
  border:none;
  height: 45px;
  text-align: center;
  position: absolute;
  right: 0;
}

.searchbtn{
  background:transparent;
}

.searchbtn img{
  filter:invert(20%);
}

/* Clear floats */
.searchinput-container::after {
  content: "";
  clear: both;
  display: table;
}

.filterbtn-container{
  position: relative;
  width: 100%;
  height:45px;

}

.filterbtn {
  border-radius: 5px;
  margin-top:-50px;
  cursor: pointer;
}

.filtertxt{
  font-size: 14px;
  position: absolute;
  right:65px;
  margin-top:-40px;
}

.img-verticalmiddle .kidsmusic{
  position: fixed;
  max-width: 43vh;
  top:38%;
  padding-left:20px;
}

/* ----------------------------------------------------------------
     [ Start account]
-----------------------------------------------------------------*/

.account .container{
  width: 100%;
  min-height: 100vh;
  position: relative;

}

.account img{
  width: 100%;
  max-width: 500px;
  padding:0px 20px;
  position: absolute;
  bottom: 0;
  right:0;
}

/* ----------------------------------------------------------------
     [ Start faq]
-----------------------------------------------------------------*/

.collapsible {
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: 600;
}

.faq .active, .collapsible:hover {
  background-color: var(--bgaccent);
}

.collapsible:after {
  content: '\002B';
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faq .active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: var(--bgprimary);
}
.content p{
  padding:10px 0px;
  font-size: 14px;
  font-weight: 200;
}



/* ----------------------------------------------------------------
     [ Start copyright]
-----------------------------------------------------------------*/

.copyright{
  margin:0 auto;
  text-align: center;
}
.copyright p{
  font-size: 12px;
}

.unsub{
  max-width: 300px;
  text-align: center;
}


/* ==========================================================================
   Placeholders
   ========================================================================== */
::-webkit-input-placeholder {font-weight: normal;color:#C5C5C5;}
::-moz-placeholder {font-weight: normal;color:#C5C5C5;}
:-moz-placeholder {font-weight: normal;color:#C5C5C5;}
input:-moz-placeholder{font-weight: normal;color:#C5C5C5;}
:-ms-input-placeholder {font-weight: normal;color:#C5C5C5;}
input:-ms-input-placeholder{font-weight: normal;color:#C5C5C5;}
input.address:-ms-input-placeholder{font-weight: normal;color:#C5C5C5;}

/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Modal ]
-----------------------------------------------------------------*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  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 */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  color:black;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
}


/* The Close Button */
.close {
  position: absolute;
  right:15px;
  top:0px;
  color: #aaaaaa;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#accBtn{
  cursor: pointer;
}


/* ----------------------------------------------------------------
     [ radio button custom ]
-----------------------------------------------------------------*/

.radioblock{
  margin: auto;
  padding: 1px;
  display: flex;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.radioblock input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark-radio{
  position: absolute;
  top: 8px;
  left: 0px;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  border:solid #c2c2c2 1px;
}

/* On mouse-over, add a grey background color */
.radioblock:hover input ~ .checkmark-radio {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioblock input:checked ~ .checkmark-radio {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark-radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioblock input:checked ~ .checkmark-radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radioblock .checkmark-radio:after {
  background: url(../img/tick.webp) no-repeat;
  width:22px;
  height: 22px;
}

.textchoice{
  padding-top: 7px;
  text-indent: 7px;
  text-align: left;
  width:100%;
  font-size: 13px;
}

.filtershowbtn{
  text-align: center;
  margin-top:30px;
}



/* ----------------------------------------------------------------
   [ cloud anim ]
-----------------------------------------------------------------*/

.cloud-container{
  position: absolute;
  right:0;
  bottom:20%;
  display: block;
}

.cloud {
  width: 43px;
  height: 40px;
  background: var(--bgprimary);
  box-shadow: inset 0 0 10px var(--bgprimary);
  box-shadow:  0 0 10px var(--bgprimary);
  box-sizing: border-box;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.cloud:nth-child(1) {
  scale:1.4;
  animation: clouding 10s linear infinite;
}
.cloud:nth-child(2) {
  scale:0.8;
  animation: clouding 6s linear infinite;
}
.cloud:nth-child(3) {
  scale:0.4;
  animation: clouding 5s linear infinite;
}
.cloud:nth-child(4) {
  scale:1.1;
  animation: clouding 8s linear infinite;
}
.cloud:nth-child(5) {
  scale:0.6;
  animation: clouding 3s linear infinite;
}
@keyframes clouding {
  0% {
    transform: translate(0,0);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(-30px, -100px);
    opacity: 0;
  }
}

/* ----------------------------------------------------------------
   [ bubble anim ]
-----------------------------------------------------------------*/

.watchdevice-container{
  position: relative;
}
.bubble-container{
  position: absolute;
  left:20%;
  top:35%;
  display: block;
}

.bubble {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #fffc9d;
  border:1px solid #03aadd;
  box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.bubble:nth-child(1) {
  scale:1.4;
  animation: bubbling 10s linear infinite;
}
.bubble:nth-child(2) {
  scale:0.8;
  animation: bubbling 6s linear infinite;
}
.bubble:nth-child(3) {
  scale:0.4;
  animation: bubbling 5s linear infinite;
}
.bubble:nth-child(4) {
  scale:1.1;
  animation: bubbling 8s linear infinite;
}
.bubble:nth-child(5) {
  scale:0.6;
  animation: bubbling 3s linear infinite;
}
@keyframes bubbling {
  0% {
    transform: translate(0,0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-30px, -100px) rotate(270deg);
    opacity: 0;
  }
}

/* ----------------------------------------------------------------
   [ leaf blown anim ]
-----------------------------------------------------------------*/

.leaf-container{
  width: 100vw;
  height: auto;
  overflow: hidden;
}

.leaf {
  width: 50px;
  position: fixed;
}
.leaf:nth-child(1) {
  bottom: 15%;
  left: -10%;
  scale:1.4;
  animation: blowing 15s 1s linear infinite;
}
.leaf:nth-child(2) {
  bottom: 30vh;
  left: -10%;
  scale:0.8;
  animation: blowing 19s linear infinite;
}
.leaf:nth-child(3) {
  bottom: 0vh;
  left: -10%;
  animation: blowing 18s 3s linear infinite;
}
.leaf:nth-child(4) {
  bottom: 40%;
  left: -10%;
  scale:1;
  animation: blowing 16s 3s linear infinite;
}
.leaf:nth-child(5) {
  bottom: 10%;
  left: -10%;
  scale:1.2;
  animation: blowing 14s 3s linear infinite;
}
.leaf:nth-child(6) {
  bottom: 23%;
  left: -10%;
  scale:1.1;
  animation: blowing 25s 3s linear infinite;
}

@keyframes blowing {
  0% {
    transform: translate(0,0) rotate(0deg);
  }
  20% {
    transform: translate(15vw, -10vh) rotate(170deg);
  }
  65% {
    transform: translate(55vw, -12vh) rotate(550deg);
  }
  80% {
    transform: translate(85vw, -17vh) rotate(740deg);
  }
  100% {
    transform: translate(110vw, -25vh) rotate(920deg);
  }
}

/* ----------------------------------------------------------------
   [ hamburger menu ]
-----------------------------------------------------------------*/
.hamburger-container{
  position: relative;
  display: none;
}
#menuToggle
{
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  -webkit-user-select: none;
  user-select: none;
  padding: 20px;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 6; /* and place it over the hamburger */
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 5;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 100vw;
  height: 100vh;
  margin: -47px 0 0 -20px;
  padding: 50px;
  padding-top: 125px;
  z-index: 4;
  background: #fff;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}


/* ----------------------------------------------------------------
   [ pagination ]
-----------------------------------------------------------------*/


.list-wrapper {
  overflow: hidden;
}

.simple-pagination ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.simple-pagination li {
  display: inline-block;
  margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
  color: #666;
  padding: 5px 10px;
  text-decoration: none;
  border: 1px solid #EEE;
  background-color: #FFF;
  box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
  color: #FFF;
  background-color: var(--bgbutn);
  border-color: #EEE;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
  background: #EEE;
}



/* ----------------------------------------------------------------
   [ Responsive ]
-----------------------------------------------------------------*/

@media screen and (max-width: 1350px) {
  #canvas, .leaf-container{
    display: none;
  }
  
}

@media screen and (max-width: 1200px) {
  .bubble-container{
    display: none;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --fontsizeh1: 40px;
    --fontsizeh2: 30px;
    --fontsizeh3: 25px;
  }

  .img-verticalmiddle img {
    position: relative;
    margin:0 auto;
  }
  .img-verticalmiddle .kidsmusic{
    position: relative;
    margin:0 auto;
    top:0;
  }

}

@media screen and (max-width: 767px) {
  :root {
    --fontsizeh1: 40px;
    --fontsizeh2: 30px;
    --fontsizeh3: 25px;
  }
  .hamburger-container{
    display: block;
  }
  section .navbarapp-container {
    position: absolute;
    width: 100%;
    padding-left: 0px !important;
    z-index: 3;
    height: auto;
  }

  .pos-re{
    padding:20px;
  }
  .pos-re.home{
    padding:0px;
    padding-top: 68px;
  }
  .container{
    padding: 10px 0px;
  }
  .navbarapp {
    position: fixed;
    background: var(--bgbutndark);
    width: 100%;
    height: 68px;
    display: inline-block;
  }

  .logo-vertical {
    position: fixed;
    top: 0px;
    height: 157px;
    transform: rotate(90deg);
    left: 60px;
/*    right: 0;*/
    margin: 0 auto;
    margin-top: -60px;
  }
  .navblock-container{
    display: flex;
    position: fixed;
    bottom:0;
    z-index: 2;
  }
  
  .navblock {
    padding: 0px!important;
    margin:0px!important;
    width: 25vw;
    height: 68px;
  }
  .navbarapp a.active {
    overflow: hidden;
    border:none;
    filter:brightness(0.7);
  }

  /* width */
  ::-webkit-scrollbar {
    width: 0px;
    background: var(--bgnav);
  }

  .nav-item{
    position: fixed;
  }

  .hometext{
    position: relative;
    padding:20px;
    color: var(--colorprimary);
    width: 100%;
    max-width: 600px;
  }

  .hometext h1{
    font-size: 32px;
  }

  .hometext p{
    font-size: 14px;
  }

  .home_img .kidbook{
    left:30px;
    bottom: 0;
    width: 100%;
    max-width: 120px;
  }
  .agelabel{
    font-size: 10px;
  }
  .products {
    padding-top: 0px;
  }
  .seealltxt_book, .seealltxt_soundtrack{
    font-size: 14px;
  }
  .booktitle {
    font-size:12px;
    padding-bottom: 10px;
  }
  .soundtracklist {
    height: 58px;
    width: 100%;
    margin:0 auto;
    margin-bottom:8px;
  }
  .soundtracklist_img {
    width: 56px;
    height: 56px;
  }
  .soundtracklisttitle{
    font-size: 12px;
    padding-left:70px;
  }
  .play_soundtrack {
    width: 32px;
    height: 32px;
  }
  .soundtracklist-container {
    padding: 0px;
  }
  .soundtrackcover::before{
    transform: scale(0.8);
    padding:2px;
  }
  .img-verticalmiddle img {
    position: relative;
    margin: 0 auto;
  }

  .copyright .container {
    padding-bottom: 80px;
  }


  .headsection.pos-re{
    padding-top: 80px;
  }

  .filtertxt{
    display: none;
  }
  .filterbtn {
    position: fixed;
    z-index: 3;
    top: 10px;
    right: 10px;
    margin-top:0;
    background: transparent;
  }
  .filterbtn-container {
    height: 15px;
  }

  .category-butn, .category-butn-soundtrack {
    font-size: 12px;
    padding: 9px 5px;
  }

  .account img{
    position: relative;
    margin:20px auto;
  }

  .cloud {
    width: 15px;
    height: 13px;
  }

}


@media screen and (max-width: 576px) {
  :root {
    --fontsizeh1: 30px;
    --fontsizeh2: 27px;
    --fontsizeh3: 25px;
  }

}

/* tablet breakpoint */
@media screen and (min-width: 768px) {
  
}

@media only screen and (min-width: 992px) {

}

@media screen and (min-width: 1200px) {


}
@media screen and (min-width: 1351px) {

}

