html {
    scroll-behavior: smooth;
}

* {box-sizing: border-box;}

ul, ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rainbow_filter {
    position: fixed;
    top:0px;
    left: 0;
    height: 105px;
    width: 100%;
    transition: 1s;
    /* background-color: rgba(255, 255, 255, 0.5); */
    /* background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%,
                                        rgba(255,255,255,0.2) 90%,
                                        rgba(255,255,255,0) 100%); */

    background-color: orange;
    /* background-image: linear-gradient(319deg, #91d370 0%, #bca0ff 37%, #f2cd54 100%); */
    background-image: linear-gradient(319deg, #f02936 0%, #f09629 25%, #f0f029 50%, #77eb34 75%, #16ccf5 100%);
    opacity: 0;
    z-index: 2;                            

}

/* NAVIGATION */
nav a{
    font-family: 'Luckiest Guy', Arial;
    color:#FFFC38;
    text-shadow: 4px 4px 0px #404040,
                -1px -1px 0 #404040,  
                1px -1px 0 #404040,
                -1px 1px 0 #404040,
                1px 1px 0 #404040;
    letter-spacing: 2px;
}

.highlight {
    color: #fff;
    font-size: 20px;
}

nav.navigation{
    position:fixed;
    width: 100%;
	height:80px;
	/* background-color:#3c3c3c; */
    z-index:3;
    text-align: center;
}
.nav-logo{
    float:center;
    height: 110px;
    transition: 1s;
	line-height:50px;
	padding: 0 20px;
	/* background-color:#11999e; */
	font-weight:700;
    text-transform:uppercase;
    text-align: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    /* padding: 4px;
    background-color: rgba(255,165,0, 0.5);
    border-radius: 10px 10px 0 0; */
}

ul.nav-menu {
    margin-top: 0;
    /* background-color: rgba(255,165,0, 0.7); */
    /* border-radius: 10px; */
    padding: 0 5px 5px 5px;
}

ul.nav-menu, ul.nav-menu li, ul.nav-menu li a{
    display: inline-block;
}

ul.nav-menu{
    padding-left: 0;
}

ul.nav-menu li a{
    margin: 0;
    padding:0 10px;
	text-decoration:none;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}


ul.nav-menu li a:hover{
	color: #fff;
}
.nav-toggle{
	display:none;
    position:absolute;
    border-radius: 100%;
	top:-4px;
	right:-2px;
	width:50px;
	height:50px;
    /* background-color:#11999e; */
	cursor:pointer;
}
span.icon-bar{
	position:absolute;
	right:12px;
	display:block;
	width:26px;
	height:2px;
	background-color:#000;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.icon-bar:nth-child(1){
  top:17px;
}
.icon-bar:nth-child(2){
  top:24px;
}
.icon-bar:nth-child(3){
  top:31px;
}
.nav-overlay{
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
	z-index:1;
	opacity:0;
	visibility:hidden;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.nav-overlay.active{
	opacity:1;
	visibility:visible;
}

/* ICON BARS ANIMATION */

.nav-toggle.active .icon-bar:nth-child(1){
	top:24px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2){
	width:0;
}
.nav-toggle.active .icon-bar:nth-child(3){
	top:24px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* GENERAL STYLES */

section {
    width: 100%;    
    min-height: 800px;
    min-width: 320px;
    height: auto;
    background-position: center top, center bottom, center;
    background-repeat: no-repeat, no-repeat, repeat;
}

section article {
    min-height: 800px; 
    height: auto;
    max-width: 1000px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    font-family: 'Nunito', sans-serif;
    /* border-right: 0.5px solid black;
    border-left: 0.5px solid black; */
}

.section_title {
    display: none;
}

/* GENERAL MODAL STYLING */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    /* padding-top: 20px; vid/watch modal*/
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: scroll;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    transition: all ease 1s;
}

.modal_content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    margin: auto;
    height: 400px;
    padding: 8px;
    padding-top: 30px;
    text-align: center;
    /* border: 4px solid purple; */
    border-radius: 10px;
    width: 480px;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animateright;
    -webkit-animation-duration: 1s;
    animation-name: animateright;
    animation-duration: 1s;
}


.close {
    position: absolute;
    top: -16px;
    right: 6px;
    z-index: 1000;
    font-size: 50px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* HOME SECTION */

#home{
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-1.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-home.png");
}

#home article{
    width: 100%;
    max-width: 1000px;
    min-height: 600px;
    background-image: url("../img/bg-img/ukulady_home.png"), url("../img/bg-img/bg_scene_home.png");                        
    background-size: 240px auto, auto;
    background-position: 90% 150px, 20% 150px;                    
}

.social-nav{
            padding-top: 540px;
        }
       

        .social-icons {
            display: flex;
            justify-content: center;
            column-gap: 10px;
            
        }

        .social-icons li{
            height:80px;
            width: 80px;
            transition: 0.5s;
            border: 4px solid white;
            /* border: 6px solid #ffcb4d; */
        }

        .social-icons li:hover {
            transform: translateY(-10px);
        }

        .social-icons li img {
            width: 100%;
            height: auto;
            padding: 10px;
        }

        .youtube_social img {
            margin-top: 10px;
        }

        .instagram_social{
            background-color: #f15a2a;
            animation-name: jump1;
            animation-duration: 1s;
            animation-delay: 1s;
            animation-timing-function: ease-in-out;
            /* animation-iteration-count: infinite; */
        }
        .apple-music_social{
            background-color: #ff00a2;
            animation-name: jump2;
            animation-duration: 1s;
            animation-delay: 1.1s;
            animation-timing-function: ease-in-out;
            /* animation-iteration-count: infinite; */
        }
        .spotify_social{
            background-color: #8dc63f;
            animation-name: jump3;
            animation-duration: 1s;
            animation-delay: 1.2s;
            animation-timing-function: ease-in-out;
            /* animation-iteration-count: infinite; */
        }
        .youtube_social{
            background-color: #c01e2e;
            animation-name: jump4;
            animation-duration: 1s;
            animation-delay: 1.3s;
            animation-timing-function: ease-in-out;
            /* animation-iteration-count: infinite; */
        }

        @keyframes jump1 {
            0% {translate: 0;}
            25% {translate: 0 -40px;}
            100% {translate: 0}
            /* 0% {translate: 0;}
            25% {translate: 0 -2px;}
            50% {translate: 0 2px;}
            100% {translate: 0;} */
        }

        @keyframes jump2 {
            0% {translate: 0;}
            25% {translate: 0 -40px;}
            100% {translate: 0}
                        /* 0% {translate: 0;}
            25% {translate: 0 -2px;}
            50% {translate: 0 2px;}
            100% {translate: 0;} */
        }

        @keyframes jump3 {
            0% {translate: 0;}
            25% {translate: 0 -40px;}
            100% {translate: 0}
                        /* 0% {translate: 0;}
            25% {translate: 0 -2px;}
            50% {translate: 0 2px;}
            100% {translate: 0;} */
        }

        @keyframes jump4 {
            0% {translate: 0;}
            25% {translate: 0 -40px;}
            100% {translate: 0}
                        /* 0% {translate: 0;}
            25% {translate: 0 -2px;}
            50% {translate: 0 2px;}
            100% {translate: 0;} */
        }







/* #home article img {
    position: absolute;
    bottom: -10px;
    right: 200px;
    transform: rotate(5deg);
    height: 60%;
    width: auto;
} */

/* WATCH SECTION */

#watch {
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-2.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-watch.png");
}

#watch article{
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
    background-repeat: no-repeat;
    background-position: center 150px;
    text-align: center; /* addition */
}

#channels {
    width: 80%;
    height: 500px;
    
    max-width: 1000px;
    margin: 0 auto;
    background-image: url("../img/bg-img/bg_scene_watch.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px;
    /* background-color: rgba(255, 255, 255, 0.6); */
}


#channel_guide {
    margin: 0 auto;
    overflow-y: scroll;
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    /* align-items: stretch; */
    justify-content: space-around;
}


#channel_guide li {
    border: 0.5px solid transparent;
    width: 17%;
    vertical-align: middle;
    /* padding: 0 4px; */
    text-align: center;
    font-size: 11px;
    /* background-color: #ccc; */
    /* color: white; */
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 5px;
    position: relative;
}

#channel_guide li::before {
    content: "";
    background:url(../img/logo_icon/vid_play.png);
    background-size: 32px 32px;
    position: absolute;
    display:inline-block;
    height:32px;
    width:32px;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
}

#channel_guide li:hover::before {
    opacity: 1;
    transition: opacity 0.5s;
}


#channel_guide li figure {
    position: relative;
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
}






#channel_guide li figcaption {
    margin-top: -10px;
}

#channel_guide li img{
    width: 96%;
}



#channel_guide li:hover {
    background-color: rgba(255,255,255,0.5);
    box-shadow: 1px 1px 8px 1px pink;
}


        /* The Modal (background) */
/* .vid_modal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    padding-top: 20px; 
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 


    
} */

/* Modal Content */
/* .modal-content_1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    margin: auto;
    height: 400px;
    padding: 8px;
    border: 4px solid purple;
    border-radius: 10px;
    width: 85%;
    max-width: 600px;
    overflow: auto;
    
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animateright;
    -webkit-animation-duration: 0.4s;
    animation-name: animateright;
    animation-duration: 0.4s;


} */

        /* The Close Button */
/* .close_2 {
    position: absolute;
    top: -12px;
    right: 8px;
    float: right;
    font-size: 50px;
    color: purple;
} */

/* .close_2:hover,
.close_2:focus {
    color: orange;
    text-decoration: none;
    cursor: pointer;
} */

#vid_iframe_1 {
    border: none;
    width: 90%;
    height: 80%;
    margin-top: 8px;
}

#playlist_title {
    font-family: 'Luckiest Guy', Arial;
    letter-spacing: 2px;
    color: purple;
    margin: 0 0 4px 0;
    font-size: 16px;
    text-decoration: underline;
}

/* Add Animation */
@-webkit-keyframes animateright {
    from {opacity:0} 
    to {opacity:1}
}

@keyframes animateright {
    from {opacity:0}
    to {opacity:1}
}



/* LISTEN SECTION */

#listen {
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-1.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-listen.png");
}

#listen article{
    background-image: url("../img/bg-img/bg_scene_listen.png");
    width: 90%;
    max-width: 800px;
    padding-top: 120px;
}

.discography {
    display: grid;
    width: 100%;
    height: auto;
    margin: 0 auto;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-template-areas:
        'rodents dove dance tdoe'
        'canters jolly_nog u_music paws_out'
        '. tune hostesses . '
        '. . rarities theme_songs'
    ;
    /* background-color: pink; */
   
}

.discography li {
    /* border: 1px solid darkblue; */
    height: 50%;
    text-align: center;
}

.discography li figure {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* border: 2px solid yellow; */
}

.discography li img {
    width: 100%;
    border: 2px solid purple;
}

.discography li figure figcaption {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 170px;
    font-size: 13px;
    padding: 4px;
    padding-top: 10px;
    padding-bottom:10px;
    margin-top: -8px;
    /* border: 1px solid black; */
    /* box-shadow: 2px 2px 2px 2px #fcbb77; */
    background-color: rgba(255, 255, 255, 0.8);
}

.discography li figure figcaption p{
    margin: 2px;
}


.discography li figure figcaption h3{
    margin: 2px;                
}

.link_dropdown {
    margin-top: auto;
    /* padding-bottom: 20px; */
}


#tune_tales {grid-area: tune}
#dance_pants {grid-area: dance}
#jolly_nog_time {grid-area: jolly_nog}
#hostesses {grid-area: hostesses}
#sing_1_chunky_rodents {grid-area: rodents}
#sing_2_dove_on_fire {grid-area: dove}
#u_music_meep_music { grid-area: u_music;}
#to_the_downfall_of_evil { grid-area: tdoe;}
#paws_out { grid-area: paws_out;}
#banned_from_canters { grid-area: canters;}
#rarities { grid-area: rarities;}
#theme_songs { grid-area: theme_songs}

.listen_link {
    /* background-color: rgba(255, 255, 255, 0.2); */
    font-size: 14px;
}

.listen_button {
    position: relative;
    cursor: pointer;
    padding: 8px 8px 8px 80px;
    height: 80px;
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin-top: 30px;
    border: 2px solid purple;
    border-radius: 50px 2px 2px 50px;
    background-color: rgba(255, 255, 255, 0.8);
}


.listen_button:hover {
    background-color: purple;
    color: white;
}

.discography li img:last-child {
    position: absolute;
    height: 100%;
    width: auto;
    border-radius: 100%;
    left: 0;
    top: 0;
    border: none;
}


#jquery_jplayer_1 {
    margin-top: 4px;
}

.modal_content {
    height: 430px;
}

.modal-content_2 h2 {
    margin: 0;
    font-family: 'Luckiest Guy', Arial;
    letter-spacing: 2px;
    color: purple;
    font-size: 18px;
}



            /* The Modal (background) */
/* .playlist_modal {
    display: none; 
    position: fixed; 
    z-index: 10; 
    left: 0;
    top: 0;
    right: 0; 
    bottom: 0; 
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    transition: all ease 1s;
} 

/* Modal Content/Box */
/* .modal-content_2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    margin: auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 480px; 
    animation-name: animatetop;
    animation-duration: 0.4s
} */

/* The Close Button */
/* .close_3 {
    color: #aaa;
    float: right;
    font-size: 38px;
    font-weight: bold;
    margin-top: -38px;
} */

/* .close_3:hover,
.close_3:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
} */

/* #player {
    width: 300px;
    height: 200px;
    border: none;
    overflow: hidden;
}  */


.listen_link a {
    display: block;
    padding: 2px;
    width: 70%;
    font-weight: bold;
    margin: 0 auto;
}

.listen_link a:hover {
    background-color: purple;
    color: white;
}

/* Add Animation */
@keyframes animatetop {
from {opacity: 0}
to {opacity: 1}
}

/* LEARN SECTION */

#learn {
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-2.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-learn.png");
}

#learn article{
    background-image: url("../img/bg-img/bg_scene_learn.png");
    /* font-family: 'Balsamiq Sans', Arial, Helvetica, sans-serif; */
    width: 80%;
    padding-top: 120px;
}

#bio {
    background-color: rgba(255, 255, 255, 0.6);
    width: 94%;
    margin: 0 auto;
    padding: 10px;
    font-size: 16px;
    box-shadow: 2px 2px 2px 2px #dccf5c;
}

#bio p {
    margin-top: 0;
}

#bio img {
    width: 30%;
    float: left;
    margin-right: 10px;
    margin-bottom: 6px;
}

#bio p::first-letter {
    font-size: 20px;
}

/* SHOWS SECTION */

#shows {
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-1.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-shows.png");
}

#shows article{
    background-image: url("../img/bg-img/bg_scene_shows.png");
    position: relative;
    background-position: center 100px;
}

#calendar_of_events {
    position: absolute;
    right: calc(50% - 250px); 
    top: 100px;
    width: 500px;
    min-width: 300px;
    height: 288px;
    margin: 100px auto; 
}

#calendar_of_events h2 {
    padding: 0;
    margin: 0;
}

#events_iframe {
    width: 100%;
    height: 90%;
    border: none;
    overflow: hidden;
}


/* CONNECTION SECTION */

#connect {
    background-image: url("../img/bg-img/section-bg-dots.png"),
                      url("../img/bg-img/section-segue-2.png"), 
                      url("../img/bg-img/bg-tiles/bg-ukutile-connect.png");
}

#connect article{
    background-image: url("../img/bg-img/bg_scene_connect.png");
    background-position: center 220px;
    width: 100%;
    max-width: 1000px;
}


#social_links {
    display: grid;
    width: 75%;
    grid-template-columns: repeat(7, 1fr);
    padding: 150px 0 0 0;
    margin: 0 auto;
    justify-items: center;
}

#social_links li {
    font-size: 30px;
    height: 60px;
}


#social_links li:nth-child(odd){
    transform: translate(0, 40px);
}


#social_links li img
 {
    height: 100%;
    width: auto;
    border-radius: 100%;
    padding: 0;
    background-color: purple;
    border: 3px solid purple;
    transition: transform .2s;
}



#social_links img:hover
{
    transform: scale(1.15);
    cursor: pointer;
}

/* Social Dropdown */

.btn {
    margin-top: 10px;
    background-color: #ff46a2;
    color: white;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #333;
    cursor: pointer;
}

.btn:after {
    content: '\25BE';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 8px;
}

.btn_active:after {
    content: "\25B4";
  }



.btn:hover, .dropdown:focus {
    background-color: #2980B9;
}


.link_dropdown {
    position: relative;
    /* display: inline-block; */
}

.dropdown-content {
    display: none;
    position: absolute;
    text-align: center;
    background-color: white;
    border: 1px solid purple;
    padding: 4px;
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
    font-size: 18px;
}

.ig {
    top: 72px;
    left: -26px;
    min-width: 100px;
    min-height:100px;
}

#social_links .btn {
    margin-top: 0;
}


.listen {
    right: 50%;
    transform: translateX(50%);
}




.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 4px;
}

.link_dropdown a:hover 
    {background-color:orange;}

.show 
    {display: block;}



.speech-bubble {
    position: relative;
    width: 200px;
    height: 90px;
    font-family: 'Luckiest Guy', Arial;
    color: purple;
    font-size: 14px;
    background: #fff;
    border-radius: 100%;
    text-align: center;
    padding-top: 2px;
    margin: 100px auto;
}

.speech-bubble p:first-child {
    font-size: 20px;
    margin: 0;
    margin-top: 12px;
}

.speech-bubble p:last-child {
    margin: 8px;
    margin-top: 4px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-left-color: #fff;
    border-right: 0;
    margin-top: -16px;
    margin-right: -10px;
}


.speech-bubble img{
    width: 16px;
    height: 16px;
}



/* CARTOONIVERSE SECTION */


#cartooniverse {
    width: 100%;
    background-image: url("../img/bg-img/section-bg-dots.png"),
                    url("../img/bg-img/section-segue-2.png"), 
                    url("../img/bg-img/bg-tiles/bg-ukutile-cartooniverse.png");
    padding-top: 120px;
    overflow-x: hidden;
}

#cartooniverse article {
    width: 99%;
    max-width: 1300px;
}

#toons {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    grid-template-areas: ". map astrid_amazon";
    width: 100%;
}

#astrid_amazon {
    grid-area: astrid_amazon;
    display: grid;
    grid-template-columns: 1fr;
    width: 130px;
    height: auto;
    padding: 4px;
    padding-top: 20px;
    margin-left: 10px;
    font-family: 'Luckiest Guy', Arial;
    letter-spacing: 2px;
    text-shadow: 4px 4px 0px #404040,
                -1px -1px 0 #404040,  
                1px -1px 0 #404040,
                -1px 1px 0 #404040,
                1px 1px 0 #404040;
    text-align: center;
    background-color: purple;
    border-radius: 4px;
}

#astrid_amazon a {
    text-decoration: none;
    font-size: 16px;
    color:#faf5f9
}

#astrid_amazon img {
    width: 100%;  
}

/* #astrid_amazon img:first-child{
    transform: rotate(10deg);
    margin-bottom: -10px;
    z-index: 5;
} */

.cartooniverse_map {
    grid-area: map;
    position: relative;
    background-image: url("../img/map/map_lg.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto;
    max-width: 900px;
    height: 500px;
    border: 3px solid purple;
    border-radius: 4px;
}

/* img[alt="Cartooniverse Logo"]{   
    display: inline-block;
    width: 250px;
    margin-bottom: -10px;
} */

.cartooniverse_characters {
    display: grid;
    width: 900px;
    height: 100%;
    grid-template-areas: 
        'camp_howl jackie_jet jackie_jet princess_misfit crust_lady .'
        'witch_drs witch_drs friendquest princess_misfit . pugasus'
        'velvetina . friendquest funny_farm grease_monkeys grease_monkeys'
        'bike_vikings bike_vikings tune_train garden_guardians garden_guardians kit_n_tenders'
        '. road_toads family_are_monsters family_are_monsters garlic_girl .';
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
}

.cartooniverse_characters li {
    text-align: center;
    /* border: 2px solid white; */
    vertical-align: middle;
    height: 100px;
    position: relative;
}

.character_logo {
    display: none;
}

.cartooniverse_characters li img {
    min-width: 0; 
    min-height: 0;
    max-height: 100%;
    max-width: 90%;  
}

.cartooniverse_characters li img:hover {
    transform: scale(1.5) rotate(5deg);
    transition: transform .4s;
    cursor: pointer;
}


#camp_howl { grid-area: camp_howl;}
#jackie_jet { grid-area: jackie_jet;}
#crust_lady { grid-area: crust_lady;} 
#witch_drs { grid-area: witch_drs;}
#friendquest { grid-area: friendquest; height: 160px;padding-top: 20px;}
#princess_misfit { grid-area: princess_misfit; height: 160px;padding-top: 30px; }
#pugasus { grid-area: pugasus;}
#velvetina { grid-area: velvetina; padding-right: 30px;}
#tune_train { grid-area: tune_train; padding-top: 20px;}
#grease_monkeys { grid-area: grease_monkeys;}
#bike_vikings { grid-area: bike_vikings;}
#garden_guardians { grid-area: garden_guardians;}
#kit_n_tenders { grid-area: kit_n_tenders;}
#road_toads { grid-area: road_toads; padding-top: 20px;}
#family_are_monsters { grid-area: family_are_monsters; padding-bottom: 5px;}
#funny_farm { grid-area: funny_farm; padding-top: 20px;}
#garlic_girl { grid-area: garlic_girl; padding-bottom: 5px;}



/* The Modal (background) */
/* .map_modal {
    display: none; 
    position: absolute; 
    z-index: 10; 
    padding-top: 20px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
    
} */

/* Modal Content */
/* .modal-content_3 {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 10px;
    border: 2px solid purple;
    border-radius: 4px;
    width: 85%;
    max-width: 600px;
    height: 80%;
    overflow: auto;
    text-align: center;
    
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animateright;
    -webkit-animation-duration: 0.4s;
    animation-name: animateright;
    animation-duration: 0.4s;
} */

.modal-content_3 img {
    height: 70px;
    width: auto;
    max-width: 90%;
}

.modal-content_3 p {
    margin: 0;
}

.pugasus_font {
    font-size: 12px;
}

#logline {
    float: left;
    width: 48%;
}

#vid_iframe_2 {
    float: right;
    width: 48%;
    height: 40%;
    border: none;
    margin-top: 4px;
}

#description {
    margin-bottom: 14px;
    font-style: italic;
}

.underline {
    text-decoration: underline;
    font-size: 15px;
}

/* Add Animation */
@-webkit-keyframes animateright {
    from {opacity:0} 
    to {opacity:1}
}

@keyframes animateright {
    from {opacity:0}
    to {opacity:1}
}

/* The Close Button */
/* .close_1 {
    position: absolute;
    top: -20px;
    right: 8px;
    float: right;
    font-size: 50px;
}

.close_1:hover,
.close_1:focus {
    color: orange;
    text-decoration: none;
    cursor: pointer;
} */



/* FOOTER SECTION */

footer{
    background-image: url("../img/bg-img/bg_scene_friendsies.png"),
                      url("../img/bg-img/bg-tiles/bg-ukutile-home.png");
    background-repeat: no-repeat, repeat;
    background-position: bottom center;
    height: 440px;
    text-align: center;
    padding: 10px;
}

footer p {
    margin-top: 0;
}





/* MEDIA QUERIES */

/* AT 1060 */
@media screen and (max-width: 1060px) {
    /* CARTOONIVERSE */
    .cartooniverse_map {
        background-image: url("../img/map/map_md.png");
        width: 800px;
        height: 450px;
    }

    .cartooniverse_characters {
        width: 800px;
    }

    .cartooniverse_characters li {
        /* border: 2px solid white; */
        height: 80px;
    }
}

/* AT 960 */
@media screen and (max-width: 960px) {
    /* CARTOONIVERSE */
    .cartooniverse_map {
        width: 700px;
        background-position: -80px 0;
    }

    .cartooniverse_characters {
        width: 700px;
    }


    .cartooniverse_characters li img {                
        max-height: 90%;
        max-width: 90%;  
    }

    #velvetina {padding-right: 0px;}
    #funny_farm {padding-top: 0px;}
    #crust_lady { margin-right: -50px;}

    /* #logline {
        font-size: 14px;
    } */


}

/* AT 860 */
@media screen and (max-width:860px){
    /* CARTOONIVERSE */
    .cartooniverse_map {
        width: 500px;
        background-position: -100px 0;
    }

    .cartooniverse_characters {
        width: 500px;
    }

}

/* AT 660 */
@media screen and (max-width:660px){
    #toons {
        grid-template-columns: 1fr;
        grid-template-areas: 'astrid_amazon'
                             'map'
                             '.';
    }

    #astrid_amazon {
        
        width: 500px;
        height: 50px;
        margin: 0 auto;
        margin-bottom: 10px;
        padding: 0;
        text-align: center;
        background-color: purple;
        border-radius: 0;
    }

    #astrid_amazon a {
        display: grid;
        grid-template-columns: 1fr 1fr 4fr;
        grid-template-rows: 25px 25px;
        grid-template-areas: "astrid_img_1 astrid_img_2 astrid_h2_1"
                            "astrid_img_1 astrid_img_2 astrid_h2_2";
        text-decoration: none;
        font-size: 12px;
        color:#faf5f9
    }

    #astrid_amazon h2 {
        margin: 0;
    }

    #astrid_amazon img {
        height: 50px;
        width: auto;
    }

    #astrid_amazon_img_1 {
        grid-area: astrid_img_1;
        /* background-color: blue; */
    }

    #astrid_amazon_img_2 {
        grid-area: astrid_img_2;
        /* background-color: red; */
    }

    #astrid_amazon_h2_1 {
        grid-area: astrid_h2_1;
        align-self: end;
        /* background-color: white;  */
    }

    #astrid_amazon_h2_2 {
        grid-area: astrid_h2_2;
        align-self: start;
        /* background-color: yellow; */
    }
    
    
}

/* AT 850 */
@media screen and (max-width: 850px) {
    /* LISTEN */
    .discography {
        display: grid;
        /* width: 70%; */
        margin: 0 auto;
        height: auto;
        /* grid-template-rows: repeat(3, 1fr);
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        grid-template-areas: 
            'u_music tdoe' 
            'paws_out canters'
            'rarities theme_songs'
        ;                 */
        grid-template-rows: repeat(5, 1fr);
        grid-template-columns: repeat(3, 1fr);
        column-gap: 10px;
        grid-template-areas: 
            'rodents dove dance'
            'tdoe canters jolly_nog' 
            'u_music paws_out tune'
            '. hostesses .'
            'rarities . theme_songs'
        ; 
    }    
}
 

/* AT 720 */
@media screen and (max-width:720px){
    /* NAV */
    ul.nav-menu li a{
        margin: 0;
        padding:0 10px;
        font-size: 12px;
    }

    /* GENERAL */
    section article { 
        max-width: 96%;
    }

    #home article{
        background-image: none, url("../img/bg-img/bg_scene_home.png"); 
        max-width: 600px; 
        background-size: 100%;
    }

    /* WATCH */
    #playlist_title {
        font-size: 14px;
    }

    .close {
        font-size: 40px;
    }

    #channel_guide li::before {
        background-size: 20px 20px;
        height:20px;
        width:20px;
        top: 28%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        opacity: 0;
    }

    /* LISTEN */



    .listen_link a {
        display: block;
        padding: 2px;
        width: 70%;
        font-weight: bold;
        margin: 8px auto;
        background-color: purple;
        color: white;
        text-decoration: none;
        letter-spacing: 2px;
        border-radius: 10px;
    }
    



    /* CONNECT */
    #social_links {
        width: 100%;
    }

}

/* AT 620 */
@media screen and (max-width:620px){
   .discography {
        width: 98%;
        margin: 0;
        margin-left: 3px;
        grid-template-rows: repeat(6, 1fr);
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        grid-template-areas: 
            'rodents dove'
            'dance tdoe'
            'canters jolly_nog' 
            'u_music paws_out'
            'tune hostesses'
            'rarities theme_songs'
        ; 
    }

    #sing_1_chunky_rodents figure figcaption, 
    #sing_feelings_2_dove_on_fire figure figcaption{
        padding-left: 0;
        padding-right: 0;
    }

    .listen_button {
        font-size: 14px;
    }
}

/* AT 500 */
@media screen and (max-width:500px){
 
   /* NAV */ 
    .nav-logo img {
        width: auto;
        height: 70px;
    }
    
    nav.navigation{
        text-align: left;
    }

    ul.nav-menu{
		position:absolute;
		top:68px;
		width:100%;
		height:0;
		padding:0;
		overflow:hidden;
	}
	ul.nav-menu.active{
		height:auto;
	}
	ul.nav-menu li{
		width:100%;
	}
	ul.nav-menu li a{
		width:100%;
        padding:0;
        font-size: 16px;
        line-height: 50px;
		text-align:center;
		background-color: rgba(255,165,0, 0.98);
	}
	ul.nav-menu li a:hover{
		background-color:#1c1c1c;
	}
	.nav-toggle{
		display:block;
    }
    
    .rainbow_filter {
        height: 68px;
    }

    .modal_content {
        width: 90%;
    }

    .close {
        top: -12px;
        right: 6px;
    }

    .highlight {
        color: #FFFC38;
        font-size: initial;
    }

    #cartooniverse {
        padding-top: 0;
    }

    #home {
        min-height: 450px;
    }

    #home article{
        width: 100%;
        max-width: 100%;
        background-image: url("../img/bg-img/bg_scene_home_mb.png");
        min-height: 450px;
        background-size: 60%;
        background-position: center center;  
                        
    }

    .section_title {
        display: block;
        font-family: 'Luckiest Guy', Arial;
        font-size: 24px;
        text-align: center;
        color:#FFFC38;
        margin-top: 0;
        text-shadow: 4px 4px 0px #404040,
                    -1px -1px 0 #404040,  
                    1px -1px 0 #404040,
                    -1px 1px 0 #404040,
                    1px 1px 0 #404040;
        letter-spacing: 2px;
    }


    /* WATCH  */


    #channels {
        width: 100%;
        height: auto;                    
        min-width: 320px;
        margin: 0 auto;
        background-image: none;
        padding: 0px;
        
    }


    #channel_guide {
        margin: 0 auto;
        overflow-y:auto;
        height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: none;
        
    }     
    
    #channel_guide li {
        border: 0.5px solid transparent;
        width: 90%;
        vertical-align: middle;
        /* padding: 0 4px; */
        text-align: left;
        height: 50px;
        font-size: 11px;
        /* background-color: yellow; */
        /* color: white; */
        cursor: pointer;
        font-weight: bold;
        letter-spacing: 1px;
        border-radius: 50px 5px 5px 50px;
        margin: 5px auto;
        position: relative;
        align-content: center;
        background-color: rgba(255, 255, 255, 0.6);
        box-shadow: none;
    }

    #channel_guide li:hover {
        background-color: rgba(200,200, 200,0.5);
        box-shadow: none;
    }

    #channel_guide li figure {
        position: relative;
        width: 5%;
        margin-left: 0;
        margin-top: 2px;
        float: left;
        height: 100%;
        /* background: green; */
    }

    #channel_guide li figcaption {
        display: table;
        position: absolute;
        margin: 0;
        /* background-color: blue; */
        float: left;
        height: 100%;
        width: 100%;
        font-size: 16px;
        /* border-bottom: 2px solid purple; */
    }

    #channel_guide li figcaption p {
        margin: 0;
        padding-left: 60px;
        display: table-cell;
        vertical-align: middle;
        
    }

    #rule_universe {
        font-size: 14px;
    }


    #channel_guide li img{
        height: 96%;
        width: auto;
        border-radius: 100%;
    }

    #channel_guide li::before {
        background:none;
    }




    /* LEARN SECTION */


    #bio img {
        display: block;
        width: 50%;
        float: none;
        margin: 0 auto 10px auto;
    }


    /* LISTEN SECTION  */
    
    /* .modal-content_2 {
        width: 320px;
    } */

    /* #listen article {
        padding: 8px;
    } */

    /* .discography li:nth-child(1),
    .discography li:nth-child(2) {
        height: 58%;
    } */


 

    #jquery_jplayer_1 {
        margin-top: 10px;
    }


    /* CARTOONIVERSE */
    section article {
        height: auto;
        min-width: 300px;
    }

    img[alt="Cartooniverse Logo"]{   
        display: inline-block;
        width: 250px;
        margin-bottom: 0;
    }

    #astrid_amazon {
        width: 90%;
    }

    #astrid_amazon a {
        grid-template-rows: 18px 32px;
        font-size: 8px;
    }
    /*
    #astrid_amazon h2 {
        float: right;
        margin: 0;
    }

    #astrid_amazon a {
        text-decoration: none;
        font-size: 8px;
    } */

    .map_modal {
        position: fixed;
    }

    .cartooniverse_map {
        background-image: none;
        background-color: rgba(255,255,255,0.5);
        margin: 0 auto;
        width: 90%;
        height: auto;
        border: none;
        border-radius: 0;
    }

    .cartooniverse_characters {
        display: block;
        width: 100%;
        padding: 4px;
    }

    .character_logo {
        display: inline-block;
    }


    .cartooniverse_characters li img {
        min-width: 0; 
        min-height: 0;
        max-height: 100%;
        max-width: 130px;  
    }

    .cartooniverse_characters li {
        /* border: 2px solid white;  */
        height: 60px;
        text-align: right;
        margin-bottom: 10px;
    }

    .cartooniverse_characters li:nth-child(odd){
        text-align: left;
    }
    
    .cartooniverse_characters li img:hover {
        transform: none;
        transition: none;
    }

    #friendquest { 
        height: 60px;
        padding-top: 0px;
    }

    #princess_misfit { 
        height: 60px;
        padding-top: 0px; 
    }

    #logline {
        display: none;
    }

    #vid_iframe_2 {
        float: none;
        width: 90%;
        height: 200px;
    }

    /* SHOWS */

    #calendar_of_events {
        position: relative;
        right: 0;
        top: 0;
        width: 98%;
        padding: 2px;
        height: 400px;
        margin: 0 auto; 
        background-color: rgba(255, 255, 255, 0.6);
    }

  

    /* CONNECT */

    #social_links {
        display: grid;
        width: 60%;
        row-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        padding: 20px 0 0 0;
        margin: 0 auto;
        justify-items: center;
    }
    
    #social_links li {
        font-size: 30px;
        height: 60px;
    }
    
    #social_links img:hover {
        transform: none;
    }
    
    #social_links li:nth-child(odd){
        transform: none;
    }

    #social_links li:last-child{
        grid-column: 2 / 3;
    }

    .speech-bubble {
        position: relative;
        width: 60%;
        height: auto;
        background: #fff;
        border-radius: 10px;
        border: 2px solid purple;
        padding: 5px;
        margin: 20px auto;
    }

    .speech-bubble p {
        margin: 0;
        margin-top: 1px;
    }

    .speech-bubble p:first-child {
        margin-top: 0;
    }

    .speech-bubble p:last-child {
        margin-bottom: 0;
    }

    
    .speech-bubble:after {
        border: none;
    }

    /* FOOTER */
    footer {
        background-size: contain, auto;
    }



    
    #listen article,
    #watch article,
    #learn article,
    #connect article,
    #shows article,
    #cartooniverse article {
        background-image: none;
        padding-top: 80px;
        width: 100%;
    }

}



@media screen and (min-width:501px){
	.nav-overlay.active{
		visibility:hidden;
		opacity:0;
	}
}

/* @media screen and (orientation:landscape){
    .modal_content{
        height: 98%;
        overflow: auto;
    }
} */

/* AT 660 AND LANDSCAPE*/
@media screen and (max-width:660px) and (orientation:landscape){
    .modal_content {
        height: 90%;
        overflow: auto;
    }
}