html {
  --background: #fff;
  --color: #333;
  --title-color: hsl(19, 100%, 40%);
  --header: #000;
  --menu: #000;
  --sombra: 2px 2px 12px hsl(19, 100%, 60%);
  --transcricao-back: #f5f5b9;
  --transcricao-link: hsl(0, 75%, 25%);
  --transcricao-text: #172427;
}

html[data-theme='dark'] {
  --background: #121212;
  --color: rgb(255, 255, 255, 87%);
  --title-color: hsl(191, 75%, 50%);
  --header: #000;
  --menu: #fff;
  --sombra: 0 0 12px #43e0ff;
  --transcricao-back: #004a5a;
  --transcricao-link: #0c0;
  --transcricao-text: #0c0;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
	font-size:12pt;
   background: var(--background);
    margin: 0;
   color: var(--color);
   transition: 0.5s;
}

pre {
	font-size:10pt;
	line-height: 14pt;
	color:#303030;
}

a { 
	text-decoration: none;
	color: var(--title-color);
}

a:hover {
    text-shadow: var(--sombra);
}

p {
    font:1.1rem/1.6 AvenirNextRegular,Arial,Helvetica,Sans-serif;
    color: var(--color);
    margin-bottom:30px;
    word-wrap: break-word;
}
h1, h2, h3, nav.menu-topo, #footer {
  font-family: 'Dosis', sans-serif;	
  font-weight: 700;
}
input,
select,
textarea {
    border: 1px solid #999;
    padding: 3px 7px;
    min-width: 300px;
    max-width: 100%;
    border-radius: 3px;
}
input[type="radio"] {
    min-width: 5px;
}

textarea {
    height: 100px;
}

blockquote {
    padding-left: 20px;
    border-left: 3px solid #ccc;
    color: #333;
    font-style: italic;
}

#header {
    background: var(--header);
    border-bottom: 5px solid var(--title-color);
    display: flex;
    justify-content: center;
}

#hcontainer {
    width: 1200px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header h1 {
  height: 150px;
}

#header h1 svg {
  height: 150px;
  width: 395.54px;
}

#header img {
	max-height: 100%;
}

header svg #dev,
header svg #deva,
header svg #pa,
header svg #alonso,
header svg #ploft {
  transition: all 1s ease;
  opacity: 0; 
}

header svg #dev {
  opacity: 1;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#rec-header {
    width: 728px;
    height: 90px;
    margin-bottom: 10px;
}

#header .english a {
  color: hsl(191, 75%, 50%);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.container {
    position: absolute;
    top: 5px;
    right: 15px;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    padding-left: 20px;
    font-weight: 500;
    color: #ccc;
    border: 2px solid #ccc;
    border-radius: 50px;
    
    vertical-align: top;
    margin-top: 5px;
}
.container:hover input ~ .checkmark {
    background-color: #ccc;
}
.container input:checked ~ .checkmark {
    background-color: #f6f878;
    left: 20px;
}
.container .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    right: -1px;
    top: 2px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: var(--header);
    border-width: 5px;
    border-radius: 50%;
}
.container input:checked ~ .checkmark:after {
    display: block;
}
#toggle-dark {
  display: none;
}
.checkmark {
    position: absolute;
    top: 2px;
    left: 5px;
    height: 15px;
    width: 15px;
    background-color: #eee;
    border-radius: 50%;
    transition: all 0.3s;
}

.disabled {
  opacity: 0.5;
}

nav.menu-topo {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  color: var(--menu);
  height: 40px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

nav.menu-topo ul {
  display: flex;
}

nav.menu-topo li {
  list-style: none;
}

nav.menu-topo li a {
  padding: 5px 15px;
  color: var(--menu);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 30px;
  font-size: 1.4em;
}

nav.menu-topo a:hover {
  text-shadow: 0 0 12px hsl(190, 100%, 74%);
}

nav.menu-topo #busca input {
  border: 1px solid hsl(0, 0%, 40%);
  background: var(--background);
  color: var(--color);
  padding: 5px 15px;
  font-weight: 400;
  font-size: 1.1rem;
  border-radius: 15px;
}

nav.menu-topo #busca input[type=text] {
  width: 200px;
}

nav.menu-topo #busca input[type=submit] {
  display: none;
}

main {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

main .content {
  max-width: 800px;
  width: calc(100% - 15px);
  padding: 0 15px;
}

img {
  max-width: 100%;
  border: 0;
}

.post h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.post .publishdate,
.post .publishdate-home {
    color: hsl(0, 0%, 60%);
    margin: 0;
}

.post .publishdate-home {
    font-size: 0.4em;
}

#entry h2 {
	font-size:1.5em;
}

.navlinks {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.navlinks .prev a, .navlinks .next a {
  padding: 10px 20px;
  border-radius: 25px;
  background-color: var(--title-color);
  color: var(--background);
}

footer {
	font-size: 72%;
  background: hsl(0, 0%, 0%);
  color: hsl(0, 0%, 100%);
  display: flex;
  justify-content: center;
}

footer .inner {
  min-height: 290px;
  padding: 30px;
  width: 1200px;
  max-width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
}

footer .inner section {
  flex: 1;
}

footer .banners,
footer .links {
    text-align: left;
    text-transform: uppercase;
    color: white;
}

footer .links h3 {
  margin-bottom: 3px;
}

footer .links li {
    list-style: none;
    margin-bottom: 3px;
}

footer .links li:last-child {
  margin-bottom: 20px;
}

footer a {
    color: #999;
}

footer .banners {
  text-align: center;
}

footer .banners a {
  font-size: 2rem;
}

footer .banners .social {
  display: flex;
  justify-content: space-evenly;
}

footer .banners .social a:hover .fa-twitter {
  text-shadow: 2px 2px 12px hsl(202, 100%, 50%);
}

footer .banners .social a:hover .fa-instagram {
  text-shadow: 2px 2px 12px hsl(32, 100%, 50%);
}

footer .banners .social a:hover .fa-youtube {
  text-shadow: 2px 2px 12px hsl(0, 100%, 38%);
}

footer .banners .social a:hover .fa-facebook {
  text-shadow: 2px 2px 12px hsl(202, 100%, 50%);
}

footer .banners .social a:hover .fa-twitch {
  text-shadow: 4px 4px 12px hsl(288, 100%, 36%);
}

footer .links a:hover {
    color: #ff0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  max-width: 500px;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  font-size: 1.2rem;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid #999;
}

#toTop {
    width:100px;
    border:1px solid var(--transcricao-link);
    background: var(--transcricao-back);
    text-align:center;
    padding:5px;
    position:fixed; /* this is the magic */
    bottom:10px; /* together with this to put the div at the bottom*/
    right:10px;
    display: none;
    cursor:pointer;
    color: var(--transcricao-link);
    font-family:AvenirNextRegular,verdana;
    font-size:11px;
    opacity: 0.4;
}

#sidebar {
    width: 336px;
}

#sidebar h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--background);
  background-color: var(--title-color);
  padding: 10px 0px 10px 30px;
  margin-bottom: 10px;
  border-radius: 0 25px 25px 0;
}

#sidebar div, #sidebar section {
    margin-bottom: 30px;
    width: 336px;
}

#sidebar .parceiros img {
    width: 336px;
}

#sidebar li {
  list-style: none;
}

#sidebar .box {
    border: 1px solid #004a5a;
    padding: 10px;
    border-radius: 10px;
}

#sidebar .controls {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

#sidebar .controls .prev ,
#sidebar .controls .next {
  width: 30px;
  cursor: pointer;
}

#sidebar .controls p {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

#insc-newsletter div {
    box-shadow: none;
    padding: 0;
    margin: 0;
    width: auto;
}

.newsletter input {
	padding: 5px 15px;
	margin-bottom: 5px;
}

.newsletter button {
	padding: 10px 15px;
	background-color: var(--title-color);
	color: white;
	font-size: 1.1rem;
	border-radius: 8px;
	margin: 10px 0;
}

#rec-sidebar {
    text-align: center;
}

#parceiros a {
    width: 300px;
    margin: auto;
    display: block;
}

#rec-main {
    width: 970px;
    margin: 15px auto;
    max-width: 100%;
}

#rec-main a,
#rec-main img {
    max-width: 100%;
}

main .content > .post, .parceiros-kinghost {
    /* padding: 15px; */
    margin-bottom: 20px;
}

.parceiros-kinghost h3 {
    font-size: 0.8em;
    font-weight: normal;
}

.parceiros-kinghost {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.postinfo {
    width: 100%;
    margin-bottom: 30px;
}
.postinfo .socialplugs {
    margin: 0;
    padding: 0;
}
.postinfo .rw-ui-container {
    margin-right: 30px;
}
.comment-count > a {
    font-size: 0.8em;
    color: #999;
    margin-left: 10px;
    font-weight: bold;
    line-height: 20px;
}
.tirinha {
    max-width: 100%;
    margin-bottom: 20px;
}
.codigo-tirinha {
    display: none;
    padding: 0 10px 10px;
    background: #000;
    position: absolute;
    top: -100px;
    right: 0;
    color: #FFF;
    font-weight: bold;
    font-size:0.8em;
    z-index: 1000;
}

.embed-code {
    position: relative;
    text-align: right;
    margin: 0;
    font-size: 0.8em
}

.subtirinha {
    text-align: center;
}

.codigo-tirinha textarea {
    width: 300px;
    height: 100px;
    border: 1px dashed #000;
    font-size: 0.8em;
    color: #333;
    background: #ffc;
}

.transcription p {
    border: 1px solid var(--transcricao-text);
    background: var(--transcricao-back);
    color: var(--transcricao-text);
    font-size: 0.8em;
    padding: 10px 15px;
    display: none;
    border-radius: 10px;
}

.transcription small {
    color: var(--transcricao-link);
    cursor: pointer;
    margin-bottom: 5px;
    display: block;
}

.transcription small:hover {
  text-shadow: 0 0 10px var(--transcricao-link);
}

.transcription {
    margin-bottom: 0.5em;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin-bottom: 15px;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#coisos {
  display: none;
}

.banner-feat {
  margin: 20px 0;
  text-align: center;
}
.faixa-banner {
	width: 100%;
	display: flex;
	justify-content: center;
	background: #082b60;
}

/* big screen */
@media only screen and (min-width: 1820px) {
    #arranhaceu {
        display: block;
        width: 300px;
        height: 600px;
        position: absolute;
        right: 10px;
    }
}

@media only screen and (max-width: 1199px) {
    #wrapper {
        width: 830px;
        margin: auto;
    }
    #rec-header {
        display: none;
    }
    nav.menu-topo {
      align-items: flex-start;
    }
    #hcontainer {
      align-items: flex-end;
    }
    #header .english a,
    #header .portuguese a {
        font-size: 0.8rem;
        text-align: right;
        width: 80%;
        display: inline-block;
    }

    nav.menu-topo ul {
      flex-direction: column;
      background: var(--background);
      z-index: 1;
    }

    nav.menu-topo ul::before {
      content: '☰';
      padding: 10px;
    }

    nav.menu-topo ul li {
      display: none;
      margin-bottom: 5px;
    }
    
    nav.menu-topo ul:hover li {
      display: block;
    }

    nav.menu-topo form {
      margin-top: 5px;
    }
    main .content {
      padding: 0 15px;
    }

}

/* tablets maiores */
@media only screen and (max-width: 900px) {
    main {
      flex-direction: column;
      align-items: center;
    }
    #wrapper {
        width: 100%;
    }
    #header-yt-link, #social-header {
        display: none;
    }
    #header h1, #header h1 svg {
        height: 100px;
        width: 263.69px;
    }
    footer .banners a {
      font-size: 1.2rem;
    }
}	

/* tablets menores */
@media only screen and (max-width: 819px) {

}	


/* smartphones */
@media only screen and (max-width: 765px) {

}	
