@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Shantell+Sans&display=swap'); /*font-family: 'Shantell Sans', cursive;*/

.lrn-prfl-nm-tag{
    font-family: 'Bubblegum Sans', sans-serif;
}
.lrn-hdr{
    font-family: 'Bubblegum Sans', sans-serif;
    color:#4a4949;
    font-size: 3rem;
    letter-spacing: 3px;
}
a.num-rsm-lrng-btn{
    font-family: 'Shantell Sans', cursive;
}

.lrn-skills-cntr div:nth-child(2),
.lrn-cur-scr-cntr div:nth-child(2),
.lrn-zoo-bdy div:nth-child(1),
.num-lst-all-cntr a{
    font-family: 'Shantell Sans', cursive;
}


/*https://codepen.io/nelledejones/pen/gOOPWrK*/
.bounce-in {
    animation: bounce-in 2s ease 1;
}
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.11);
    }
    70% { transform: scale(.9); }
    100% { transform: scale(1); }
}

/*
PROGRESS BARS
*/
/*https://codepen.io/chriscoyier/pen/eYBOvJB*/
.meter {
    box-sizing: content-box;
    height: 50px; /* Can be anything */
    position: relative;
    margin: 1% 2%; /* Just for demo spacing */
    background: #555;
    border-radius: 25px;
    padding: 10px;
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
  }
  .meter > span {
    display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(43, 194, 83);
    background-image: linear-gradient(
      center bottom,
      rgb(43, 194, 83) 37%,
      rgb(84, 240, 84) 69%
    );
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
      inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    /*MINE*/
    font-weight: bold;
    font-family: 'Shantell Sans', cursive;
    font-size:1.5rem;
  }
  .meter > span:after,
  .animate > span > span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
  }
  
  .animate > span:after {
    display: none;
  }
  
  @keyframes move {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 50px 50px;
    }
  }
  
  .orange > span {
    background-image: linear-gradient(#f1a165, #fb791c);
  }
  
  .red > span {
    background-image: linear-gradient(#f0a3a3, #f42323);
  }

  .loading-mtr > span {
    background-color: rgb(1 188 229);
  }
  
  
  .nostripes > span > span,
  .nostripes > span::after {
    background-image: none;
  }


  /* MODAL CONTROLLER*/
  /*https://codepen.io/Mosalev/pen/JZqNNx*/
  .blur{
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
  }
  body .esmk-modal-wrapper{
    width:100%;
    height:100%;
    position:fixed;
    top:0; left:0;
    background:rgba(255,257,153,0.35);
    visibility:hidden;
    opacity:0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    z-index:1000;
  }
  
  .esmk-modal-wrapper.open{
    opacity:1;
    visibility:visible;
  }
  
  .esmk-modal{
    width:600px;
    height:500px;
    display:block;
    margin:50% 0 0 -300px;
    position:relative;
    top:50%; left:50%;
    background:#fff;
    opacity:0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index:1000;
  }
  
  .esmk-modal-wrapper.open .esmk-modal{
    margin-top:-300px;
    opacity:1;
  }
  
  .esmk-head{
    width:100%;
    height: 57px;
    padding: 2% 0%;
    overflow:hidden;
    background:#01bce5;
  }
  
  .esmk-btn-close{
    width:32px;
    height:32px;
    display:block;
    float:right;
    margin-right: 5%;
  }
  
  .esmk-btn-close::before, .esmk-btn-close::after{
    content:'';
    width:32px;
    height:6px;
    display:block;
    background:#fff;
  }
  
  .esmk-btn-close::before{
    margin-top:12px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
  }
  
  .esmk-btn-close::after{
    margin-top:-6px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
  }
  
  .esmk-content{
    padding:5%;
  }

  /*TEAM MODAL*/
  .blur-tm{
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
    filter: blur(0px);
  }

  .esmk-content .mdl-not-cntr.team-disp-ovrd{
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
  }
  .esmk-content .esmk-cncl-btn.ovrd-team{
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
  }

  .team-modal_def_values {
    height: 672px;
    width: 1110px;
    left: 38%;
    top:41%;
  }

  /*audio visualizer*/
  .visual-loader {
    margin: 0 0 2em;
    width: 35%;
    text-align: center;
    padding: 1em;
    margin: 0 auto 1em;
    vertical-align: top;
  }
  /*
    Set the color of the icon
  */
  .loading-loader svg path,
  .visual-loader svg rect {
    fill: #FF6700;
  }

  /*LOADER CIRCLE*/
  .loading-loader {
    margin: 0 0 2em;
    width: 70%;
    text-align: center;
    padding: 1em;
    margin: 0 auto 1em;
    vertical-align: top;
    display: none;
  }


  /* ANIMATED COUNTER FOR COMPETENCY SCORE*/
  #pointdisplay {
    font-size: 5rem; /*100px;*/
    /*height: 300px;
    width: 300px;
    */
    height: 215px;
    width: 215px;
    margin-left: 10px;/*-150px;*/
    margin-top: 25px;
    /*left: 50%;*/
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  #pointdisplay .pointer {
    width: 150px;
    height: 150px;
    position: absolute;
    transform-origin: 100% 100%;
  }
  
  #pointdisplay .cover {
    position: absolute;
    width: 166px; /*290px;*/
    height: 171px; /*290px;*/
    border-radius: 50%;
    top: 21px; /*5px;*/
    left: 27px; /*5px;*/
    background-color: #e8e8e8;
  }
  
  #pointdisplay p {
    background: linear-gradient(to right, #21304D 20%, #00858e 80%), #222;
    -webkit-background-clip: text;
    /*background-clip:content-box;*/
    -webkit-text-fill-color: transparent;
    /*line-height: 200px;*/
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    /*width: 200px;
    height: 200px;*/
    margin: 41px 0 0 6px;
    border-radius: 50%;
    position: relative;
  }

  .modal-mplt-btn-main{
    width: 98%;
    padding: 4% 0%;
    color: #2c2c2c !important;
  }

  /*MODAL*/
.modal_def_values{
	height:500px;
	width:600px;
	left:50%
}
.modal_large_values{
	height:600px;
	width:900px;
	left:44%
}
.modal_def_values_zoo_mgr{
	height: 600px;
	width: 900px;
	left: 44%;
}

.modal_def_values_zoo_mgr_btn{
	font-size: 2.5rem;
	padding: 3% 9%;
	color: #000;
}

@media screen and (min-width: 1200px) {
	.container{
		margin-left: 0px !important; /*override grid.scss*/
	}
	.lgd-in-spacer{
		width:0% !important;
	}
  .esmk-modal-wrapper.open .esmk-modal{
    margin-top:-220px;
    opacity:1;
  }
  .team-modal_def_values, .modal_def_values_zoo_mgr {
    height: 572px;
    width: 1110px;
    left: 31.5%;
    top:41%;
  }
  .team-modal_def_values .esmk-nxt-dyk-btn-cntr{
    display: none;
  }
}
@media screen and (min-width: 1900px) {
  .esmk-modal-wrapper.open .esmk-modal{
    margin-top:-300px;
    opacity:1;
  }
  .team-modal_def_values {
    height: 672px;
    width: 1110px;
    left: 38%;
    top:41%;
  }
  .profile-modal_def_values {
    height: 500px;
    width: 900px;
    left: 45%;
    top: 41%;
  }
  .lgd-in-spacer {
        width: 15% !important;
    }
}
@media only screen and (max-width: 768px){
  .modal_def_values, .modal_def_values_zoo_mgr, .profile-modal_def_values {
    height: 500px;
    width: 350px;
    left: 85%;
  }
  .esmk-content .mdl-not-cntr {
    font-family: 'Shantell Sans', cursive;
    font-size: 1.4rem;
  }
  .lrn-hdr {
		font-size: 2rem;
		letter-spacing: 3px;
    margin: 10% 0% 0% 0%;
    text-align: center;
	}
  .team-modal_def_values {
    height: 700px;
    width: 350px;
    left: 85%;
    top:48%;
    overflow-y: scroll;
  }
  .modal_def_values_zoo_mgr_btn {
    font-size: 1.3rem;
  }
}


