@font-face{
	font-family: "Comfortaa Regular";
	src: url("../fonts/Comfortaa-Regular.ttf") format("truetype");
}
@font-face{
	font-family: "Comfortaa Bold";
	src: url("../fonts/Comfortaa-Bold.ttf") format("truetype");
}
body {
	font-size: 16px;
	color: #fff;
	font-family: 'Comfortaa Bold', serif;
  	overflow-x: hidden;
	background: #23c0d7;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	font-family: 'Comfortaa Bold', serif;
	color: #fff;
}

/* Bootstrap overrites */
.btn {
	margin: 10px 0;
	padding-left: 30px;
	padding-right: 30px;
	border-radius: 0;
}
.btn-primary {
    color: #fff;
    background-color: #fba819;
    border-color: #fba819;
	box-shadow: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
	background-color: #23c0d7;
    border-color: #23c0d7;
	box-shadow: none;
}
.btn-outline-primary, .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active, .open > .dropdown-toggle.btn-outline-primary {
	color: #23c0d7;
    border-color: #23c0d7;
}

/* Page Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#loader {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    z-index: 10001;
}
#loader .logo {
	position: relative;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 12px solid #fff;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader p {
	position: relative;
    display: block;
    bottom: 0;
    width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 21px;
	z-index: 10001;
}
#loader .logo:before, #loader .logo:after {
	position: absolute;
	display: block;
	top: 35%;
	left: 20%;
	width: 20%;
	height: 20%;
	background: #fff;
	border-radius: 100%;
	content: "";
}
#loader .logo:after {
	left: auto;
	right: 20%;
}

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        25%   { 
            -webkit-transform: rotate(30deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(30deg);  /* IE 9 */
            transform: rotate(30deg);  /* Firefox 16+, IE 10+, Opera */
        }
        50%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        75%   { 
            -webkit-transform: rotate(-30deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(-30deg);  /* IE 9 */
            transform: rotate(-30deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        25%   { 
            -webkit-transform: rotate(30deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(30deg);  /* IE 9 */
            transform: rotate(30deg);  /* Firefox 16+, IE 10+, Opera */
        }
        50%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        75%   { 
            -webkit-transform: rotate(-30deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(-30deg);  /* IE 9 */
            transform: rotate(-30deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
		background: #000;
        z-index: 10000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */

            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader, .loaded #loader-center {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }


#wrapper {
	overflow-x: hidden;
}
#logo {
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
    height: 80px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
	z-index: 110;
}
#logo img {
    position: absolute;
	bottom: 0;
    right: 0;
    width: 100%;
	transform: rotate(-90deg);
}
.toggled #logo span {
	color: #cc9999;
	transition: 0.3s;
}

#sidebar-wrapper {
	position: fixed;
	min-height: 100vh;
	margin-left: -320px;
	background: #23c0d7;

	-webkit-transition: margin .25s ease-out;
	-moz-transition: margin .25s ease-out;
	-o-transition: margin .25s ease-out;
	transition: margin .25s ease-out;
	z-index: 100;
}
#menu-toggle {
	padding: 0 20px;
	margin: 0px;
	color: #fff;
	font-size: 21px;
	transition: 0.3s;
}
#menu-toggle:focus {
	box-shadow: none;
}
#sidebar-wrapper .sidebar-heading {
	position: absolute;
	top: 0;
    right: 0;
	margin-top: 120px;
	font-size: 1.2rem;
	text-align: right;
}
#sidebar-wrapper .sidebar-inner {
	position: relative;
	display: flex;
	margin-right: 60px;
    width: 320px;
	height: 100%;
    min-height: 100vh;
	border-right: 1px solid #b5f5fe;
}
#sidebar-wrapper .list-group {
	width: 100%;
}

#sidebar-wrapper .list-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
}
#sidebar-wrapper .list-group .list-group-item {
	padding: 0;
	color: #fff;
	background-color: transparent;
	border: none;
}
#sidebar-wrapper .list-group .list-group-item:last-child {
	/*border-bottom: 1px solid #cc9999;*/
}
#sidebar-wrapper .list-group .list-group-item a {
	display: block;
	padding: .75rem 1.25rem;
	color: #fff;
	border-left: 10px solid #b5f5fe;
}
#sidebar-wrapper .list-group .list-group-item a:hover {
	background: transparent;
	border-color: #fba819;
}
#sidebar-wrapper .brand-callout {
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 200px;
	z-index: 10;
	transition: .5s;
}
.toggled #sidebar-wrapper .brand-callout {
	left: 0;
	transition: .5s;
}
#sidebar-wrapper .brand-callout:before {
	position: absolute;
	display: block;
	left: -300px;
    bottom: -100px;
    height: 250px;
    width: 200%;
    background: #424242;
    transform: rotate(45deg);
	content: "";
	z-index: 12;
}
#sidebar-wrapper .brand-callout:after {
	position: absolute;
	display: block;
	left: -295px;
    bottom: -95px;
    height: 250px;
    width: 200%;
	background: linear-gradient(-45deg,#ec1c4e,#efe919,#64cae0);
    background-size: 200% 200%;
    -webkit-animation: Gradient 60s ease infinite;
    -moz-animation: Gradient 60s ease infinite;
    animation: Gradient 60s ease infinite;
    transform: rotate(45deg);
	content: "";
	z-index: 11;
}
#sidebar-wrapper .brand-callout .lt-logo, #sidebar-wrapper .brand-callout .mga-logo {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 3%;
	width: 60%;
	top: 0;
	left: 0;
	z-index: 13;
}
#sidebar-wrapper .brand-callout .mga-logo {
	width: 40%;
}
#sidebar-wrapper .brand-callout .lt-logo img, #sidebar-wrapper .brand-callout .mga-logo img {
	width: 100%;
}
#sidebar-wrapper .brand-callout p {
	position: relative;
	margin: 0;
	padding: 0 15%;
	padding-bottom: 10px;
	text-align: center;
    /*transform: rotate(-8deg);*/
    font-size: 18px;
	z-index: 13;
}

#sidebar-wrapper .sidebar-center {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#sidebar-wrapper .sidebar-bottom {
	display: none;
	position: absolute;
	bottom: 0;
	right: 0;
}
#sidebar-wrapper .circle-icons {
	padding: 15px 20px;
}
.circle-icons .circle-icon {
	position: relative;
	display: block;
	margin-top: 5px;
	height: 60px;
    width: 60px;
	color: #fff;
	border: 4px solid #fff;
	border-radius: 100%;
}
.circle-icons .circle-icon p, .circle-icons .circle-icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 24px;
	transform: translate(-50%, -50%);
}
.circle-icons a.circle-icon:hover {
	color: #b5f5fe;
}

#page-content-wrapper {
  	min-width: calc(100vw - 75px);
	transition: 0.3s;
}

#wrapper.toggled #sidebar-wrapper {
	margin-left: 0;
}


/* Custom */
.page-section, footer {
	position: relative;
	margin-left: 60px;
	z-index: 1;
}
.page-section .section-title {
	position: relative;
}
.page-section h1 {
	font-size: 120px;
}
.page-section .section-title h2,
.page-section .section-title h3 {
	display: inline-block;
	padding: 2% 3%;
	background: #fba819;
}
.page-section .section-title.right {
	text-align: right;
}
.page-section .pattern-bg {
	position: absolute;
    bottom: 10%;
    left: 0;
    height: 30%;
}
#hero-section, #error-page {
	height: 100vh;
	background: #23c0d7;
	z-index: 10;
}
#error-page, #teaser {
	/*overflow-y: hidden;*/
}
#teaser {
	padding: 3%;
	margin: 0;
	z-index: 50;
	background: #23c0d7;
	overflow-x: hidden;
}
.tobi-bg {
	position: absolute;
	display: block;
	top: -1200px;
	left: -500px;
	width: 4000px;
	height: 2000px;
	background-color: #23c0d7;
	z-index: 5;
	transform: rotate(35deg);
	content: "";
}
#hero-section .site-title, #error-page .site-title, #teaser .site-title {
	position: relative;
	display: inline-block;
	width: 55%;
	padding: 5%;
}
#error-page .site-title {
	width: 70%;
}
#teaser .site-title {
	width: 35%;
	padding: 2% 5%;
}
#hero-section .site-title img, #teaser .site-title img {
	display: inline-block;
	max-width: 100%;
}
#hero-section .sub-header {
	display: block;
	margin: 0;
	padding: 4% 0;
	text-align: center;
	font-size: 64px;
}
#hero-section .kids {
	position: absolute;
	bottom: 0;
	left: 10%;
	height: 40%;
	z-index: 10;
}
#hero-section .kids img {
	height: 100%;
}
#tobi-hero {
	position: absolute;
	top: -30%;
	right: 7%;
	height: auto;
	width: 30%;
	z-index: 150;
}
#tobi2-hero {
	margin-top: 3%;
}
#tobi2-hero, #tobi2-title {
	z-index: 150;
}
#tobi2-hero img, #tobi2-title img {
	width: 100%;
}
#error-page #tobi-hero {
	right: 3%;
}
#teaser #tobi-hero {
	top: -10%;
	right: 3%;
	width: 20%;
}
#tobi-hero img {
	width: 100%;
}
#tobi-hero .face {
	position: absolute;
	top: 42%;
    left: 28%;
    width: 45%;
    height: 14%;
	transform: rotate(1deg);
	background: #27262c;
}
#tobi-hero .face img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#video-section {
	background-color: #6e51a2;
	z-index: 20;
}
.video {
	position: relative;
	margin: 8.5% 8.5% 0;
	padding-bottom: 8.5%;
	z-index: 25;
}
.video .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
}
.video .video-overlay .play-btn {
	position: absolute;
	top: 42%;
	left: 50%;
	width: 100px;
	height: 100px;
	transform: translate(-50%, -50%);
	color: #fba819;
	border: 10px solid #fba819;
    border-radius: 100%;
	z-index: 28;
}
.video .video-overlay .play-btn:hover {
	cursor: pointer;
}
.video .video-overlay .play-btn .fa {
	position: absolute;
	margin-left: 5%;
	top: 50%;
	left: 50%;
	font-size: 50px;
	transform: translate(-50%, -50%);
}
.video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 26;
}
.video .video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	z-index: 24;
}
.video .video-container .yt-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
#teaser .video {
	margin: 8.5% 0 0 !important;
	padding-bottom: 0 !important;
	width: 70%;
	margin: 0;
}
#teaser .section-title {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 200;
}
#teaser .pattern-bg {
	z-index: -10;
}
#comingsoon {
	margin-top: 10%;
	text-align: center;
}
#comingsoon img {
	width: 75%;
}

#interactive-section {
	height: 100vh;
	min-height: 400px;
	background: #fff;
	overflow-y: hidden;
	z-index: 1;
}
#interactive-section .section-title {
	z-index: 6;
}
#interactive-section .section-title h2 {
	background: #1b1d42;
}
#interactive-section .interactive-tobi {
	position: absolute;
    left: 50%;
    top: 50%;
	width: 40%;
	transform: translate(-50%, -50%);
	z-index: 5;
} 
#interactive-section .interactive-tobi img {
	width: 100%;
}
#interactive-section .face {
	position: absolute;
	top: 42%;
    left: 28%;
    width: 45%;
    height: 14%;
	transform: rotate(1deg);
	background: #27262c;
}
#interactive-section .face img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#interactive-section .interactive-panel {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 75%;
	height: 75%;
	/*border: 1px solid #000;*/
	transform: translate(-50%, -50%);
}
#interactive-section .interactive-panel .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	bottom: 50%;
	padding: 10px;
	width: 120px;
	transform: translate(-50%, -50%);
	opacity: 0;
}
#interactive-section .interactive-panel .icon:hover {
	padding: 0;
	transition: .2s !important;
}
#interactive-section.active .interactive-panel .icon {
	cursor: pointer;
	transition: 1s;
	opacity: 1;
}
#interactive-section .interactive-panel .icon img {
	display: block;
	width: 100%;
	/*max-width: 100%;
	max-height: 150px;*/
}
#interactive-section.active .interactive-panel .icon { transform: none; }
#interactive-section.active .interactive-panel #icon-camera { top: 0; left: 5%; }
#interactive-section.active .interactive-panel #icon-fitness { left: 0; bottom: auto; transform: translateY(-50%); }
#interactive-section.active .interactive-panel #icon-video { top: auto; bottom: 0; left: 5%; }
#interactive-section.active .interactive-panel #icon-games { top: 0; left: auto; right: 5%; }
#interactive-section.active .interactive-panel #icon-voice { left: auto; bottom: auto; right: 0; transform: translateY(-50%); }
#interactive-section.active .interactive-panel #icon-light { top: auto; bottom: 0; left: auto; right: 5%; }

#features {
	background: url(../images/dot-pattern-vert-min.png) no-repeat;
	z-index: 20;
}
#features .feature-items {
	position: relative;
	padding: 6%;
}
#features .feature-item {
	position: relative;
	display: inline-block;
	padding: 15%;
	text-align: right;
	z-index: 21;
	transition: .4s;
}
#features .feature-item:hover {
	padding: 10%;
	transition: .2s;
}
#features .feature-item h3 {
	position: relative;
	display: inline-block;
	padding: 4% 6%;
	font-size: 36px;
	text-transform: uppercase;
	background: #fba819;
	border-radius: 15px;
	z-index: 25;
	transition: .4s;
}
#features .feature-item h3:after {
	position: absolute;
	display: block;
	right: 10%;
    bottom: -29%;
    width: 20%;
    height: 30%;
	background: url("../images/callout-yellow.png") no-repeat;
	background-size: 100% 100%;
	content: "";
}
#features .feature-item h3.yellow { background-color: #fba819; } #features .feature-item h3.yellow:after { background-image: url("../images/callout-yellow.png"); }
#features .feature-item h3.violet { background-color: #a93d97; } #features .feature-item h3.violet:after { background-image: url("../images/callout-violet.png"); }
#features .feature-item h3.pink { background-color: #ed1890; } #features .feature-item h3.pink:after { background-image: url("../images/callout-pink.png"); }
#features .feature-item h3.purple { background-color: #7051a2; } #features .feature-item h3.purple:after { background-image: url("../images/callout-purple.png"); }
#features .feature-item h3.orange { background-color: #f5842d; } #features .feature-item h3.orange:after { background-image: url("../images/callout-orange.png"); }
#features .feature-item h3.blue { background-color: #3cc4e1; } #features .feature-item h3.blue:after { background-image: url("../images/callout-blue.png"); }
#features .feature-item:hover h3 {
	font-size: 48px;
	transition: .2s;
}
#features .feature-image {
	position: relative;
	transform: rotate(-10deg);
	z-index: 24;
	transition: .4s;
}
#features .feature-item:hover .feature-image {
	transform: rotate(5deg);
	transition: .2s;
}
#features .item-1 .feature-image { transform: rotate(-10deg); }
#features .item-2 .feature-image { transform: rotate(5deg); }
#features .item-3 .feature-image { transform: rotate(2deg); }
#features .item-4 .feature-image { transform: rotate(-8deg); }
#features .item-5 .feature-image { transform: rotate(-8deg); }
#features .item-6 .feature-image { transform: rotate(5deg); }
#features .feature-image img {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	border: 10px solid #ccc;
	border-radius: 15px;
}
#features .feature-item .feature-text {
	padding-top: 10%;
	text-align: center;
}
#features .feature-item .feature-text p {
	font-size: 34px;
	font-family: 'Comfortaa Bold', serif;
}
#specs {
	background: #3a3a5d url("../images/dot-pattern-dark-vert-min.png") no-repeat right top;
}
#specs .specs-inner {
	padding: 8%;
}
#specs .specs-header {
	padding-bottom: 3%;
}
#specs .specs-header h2 {
	text-transform: uppercase;
}
#specs .specs-list li {
	margin-left: 10px;
	padding: 10px;
	list-style: none;
}
#specs .specs-list li:before { 
    font-family: 'FontAwesome';
	font-size: 16px;
    content: '\f111';
    margin: 0 5px 0 -30px;
    color: #23c0d7;
}
#specs .list-group-item {
	font-family: 'Comfortaa Bold', serif;
	border: none;
	background-color: transparent;
}
#specs .list-group-item .fa {
	color: #23c0d7;
}
#specs .specs-image {
	padding: 2% 28%;
}
#specs .specs-image img {
	width: 100%;
	max-width: 440px;
	border: 3px solid #fff;
	background: #1a1d43;
}

footer {
	position: relative;
	background: #fba819 url("../images/kids-3-min.png") no-repeat;
	background-size: 38%;
	background-position: 5% 100%;
	z-index: 50;
}
footer .footer-inner {
	background: url(../images/dot-pattern-vert-min.png) no-repeat right top;
}
footer .subsidiary {
	position: relative;
	text-align: right;
    padding: 0 8%;
}
footer .subsidiary p {
	margin: 0;
	font-size: 16px;
	color: #fff;
}
footer .footer-tobis {
	position: absolute;
	top: -5%;
	left: 45%;
	width: 28%;
}
footer .footer-tobis img {
	width: 100%;
}
footer .footer-image {
	position: relative;
	padding-top: 8%;
    padding-bottom: 20%;
}
footer .footer-image img {
	transform: rotate(90deg);
    width: 20%;
}
footer .copyright {
	padding: 20px 4%;
	font-size: 16px;
	color: #fff;
}
footer .copyright p {
	display: inline-block;
	margin: 0;
	color: #1b1d42;
}
footer .copyright .footer-links {
	float: right;
}
footer .copyright .footer-links li {
	display: inline-block;
	list-style: none;
}
footer .copyright .footer-links li a {
	display: inline-block;
	padding: 2px 10px;
	color: #fff;
}
p.footer {
	font-size: 16px;
	padding: 15px 0;
	color: #1b1d42;
}

.modal { padding: 3%; }
.modal-backdrop { background-color: #fff; }
.modal-content {
	background: none;
	border: none;
}
.modal-box {
	position: relative;
	padding: 2%;
	z-index: 10;
}
.modal-box .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	color: #fff;
	background: #23c0d7;
	border: 4px solid #fff;
	border-radius: 100%;
	opacity: 1;
	z-index: 20;
}
.modal-box .modal-left {
	position: relative;
	text-align: center;
	padding: 0;
	min-height: 400px;
	background: #000;
}
.modal-box .modal-left .img-bg {
	position: relative;
	width: 100%;
	height: 65%;
	background: #1b1d42 url("../images/tobi-watch-full-blue-v3.png") no-repeat center center;
	background-size: 45% auto;
}
.modal-box .modal-left h2 {
	padding-top: 3%;
	padding-left: 3%;
	padding-right: 3%;
	font-size: 32px;
}
.modal-box .modal-left p {
	padding-left: 3%;
	padding-right: 3%;
}
.modal-box .modal-right {
	text-align: center;
	padding: 3%;
	background: #6e51a2;
}
.modal-box .modal-body {
	padding: 0;
}
.modal-box h2 {
	margin-bottom: 20px;
}
.modal-box .modal-body p {
	font-size: 18px;
}
.modal-box .modal-footer {
	display: inline-block;
	border: none;
}
#about-modal .modal-left {
	background-image: url("../images/footer-tobis-min.png");
	background-size: 90%;
    background-repeat: no-repeat;
    background-position: 20px 20px
}
#notofage-modal .modal-left h2 {
	margin-top: 30%;
    font-size: 60px;
}
#notofage-modal .modal-body {
	margin-top: 20%;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 1000px;
	}
}
@media (min-width: 768px) { /* Desktop Size */
	body {
		font-size: 20px;
	}
	.btn {
		margin: 30px 0;
	}
	
	#logo img {
		position: absolute;
		bottom: 0;
		right: 0;
		width: 100%;
		transform: rotate(-90deg);
	}
	#menu-toggle {
		margin: 0;
		padding: 0 36px;
		color: #fff;
		font-size: 30px;
	}
	.page-section, footer {
		margin-left: 100px;
	}
	.page-section {
		min-height: 500px;
	}
	#sidebar-wrapper {
		margin-left: -280px;
	}
	#sidebar-wrapper .sidebar-inner {
		margin-right: 100px;
    	width: 280px;
	}
	#sidebar-wrapper .list-group {
		/*width: 380px;
		padding-right: 100px;*/
	}
	#page-content-wrapper {
		min-width: calc(100vw - 100px);
	}

	#wrapper.toggled #sidebar-wrapper {
		margin-left: 0px;
	}
	
	.page-hero {
		padding: 20% 5%;
		padding-top: 15%;
	}
	.page-hero:after {
		background-size: 120% auto;
	}
	.page-hero h1 {
		width: 50%;
		font-size: 120px;
	}
}
@media (min-width: 768px) and (max-height: 800px) {
	#hero-section .site-title {
		width: 50%;
	}
	#hero-section .sub-header, #teaser .sub-header {
		font-size: 40px;
	}
}
@media (min-width: 768px) and (max-height: 540px) {
	#hero-section .kids {
		display: none;
	}
}
@media (max-width: 991px) { /* Laptop/Tablet Size */
	#hero-section .sub-header, #teaser .sub-header {
		font-size: 32px;
	}
	#tobi-hero {
		top: -5%;
	}
	#hero-section .kids {
		left: 5%;
	}
	#interactive-section .interactive-panel .icon {
		width: 85px;
	}
}

@media (max-width: 767px) { /* Mobile Size */
	#logo img {
		margin-left: 20px;
		bottom: 0;
		right: auto;
	}
	#tobi-hero {
		top: -20%;
	}
	#sidebar-wrapper .sidebar-center {
		transform: none;
	}
	#sidebar-wrapper .circle-icons {
		padding: 5px 10px;
	}
	.circle-icons .circle-icon {
		height: 40px;
		width: 40px;
		border-width: 2px;
	}
	.circle-icons .circle-icon p, .circle-icons .circle-icon i {
		font-size: 20px;
	}
	.page-section .section-title h2, .page-section .section-title h3 {
		font-size: 24px;
	}
	#hero-section {
		max-height: 400px !important;
	}
	#hero-section .sub-header {
		font-size: 21px;
	}
	#hero-section .kids {
		height: 38%;
	}
	#tobi-hero {
		width: 35%;
	}
	#teaser .video {
		margin: 25% 0 0 !important;
		width: 100%;
	}
	#teaser #tobi-hero {
		display: none;
	}
	
	#interactive-section .interactive-panel .icon {
		padding: 5px;
		width: 60px;
	}
	#features .feature-item h3 {
		font-size: 28px;
	}
	#features .feature-item:hover h3 {
		font-size: 30px;
	}
	#features .feature-item .feature-text p {
		font-size: 24px;
	}
	#specs .specs-image {
		padding: 4% 15%;
	}
	
	footer {
		background-image: none;
	}
	footer .subsidiary {
		display: none;
		padding: 0;
	}
	footer .footer-image {
		padding-bottom: 0;
	}
	footer .footer-links ul {
		margin: 0;
		padding: 0;
	}
	footer .footer-tobis {
		display: none;
		width: 32%;
	}
	footer .copyright {
		padding: 4%;
	}
}
@media (max-width: 550px) {
	#hero-section {
		max-height: 320px !important;
	}
}