
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');


/*
MENU LATERAL BOTÃO
*/

.menu {
  background: rgb(0, 0, 0);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  top: 65px;
  /*right: 25px;*/
  left: 20px;
  cursor: pointer;
  box-shadow: 0 0 0 0px #fff, 0 0 0 0px #fff;
  -webkit-box-shadow: 0 0 0 0px #fff, 0 0 0 0px #fff;
  -moz-box-shadow: 0 0 0 0px #fff, 0 0 0 0px #fff;
  transition: box-shadow 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: box-shadow 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: box-shadow 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu:hover {
  box-shadow: 0 0 0 8px rgb(143, 143, 143), 0 0 0 8px rgb(255, 255, 255);
 
}

.hamburger {
  position: relative;
  background: rgb(255, 255, 255);
  display: block;
  width: 30px;
  height: 4px;
  top: 29px;
  left: 15px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.hamburger:before,
.hamburger:after {
  background: rgb(255, 255, 255);
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.hamburger:before {
  top: -10px;
}

.hamburger:after {
  bottom: -10px;
}
/*
input {
  display: none;
}

input:checked ~ ul {
  opacity: 1;
}

input:checked ~ label .menu {
  box-shadow: 0 0 0 130vw #fff, 0 0 0 130vh #fff;
  -webkit-box-shadow: 0 0 0 130vw #fff, 0 0 0 130vh #fff;
  -moz-box-shadow: 0 0 0 130vw #fff, 0 0 0 130vh #fff;
}

input:checked ~ label .hamburger {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

input:checked ~ label .hamburger:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  top: 0;
}

input:checked ~ label .hamburger:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  bottom: 0;
}

/*
MENU LATERAL BOTÃO
*/

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

#sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100vh;
  z-index: 9999;
  background: rgb(0, 0, 0);
  color: #fff;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  /*background: rgb(255, 255, 255);*/
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {
  /*background: #fff;
  color: #7386D5;*/
  transform: rotate(90deg);
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 2;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #000000;
}

#sidebar ul.components {
  padding: 20px 0;
  /*border-bottom: 1px solid #47748b;*/
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
}

#sidebar ul li a {
  padding: 15px;
  font-size: 1.1em;
  display: block;
}

#sidebar ul li a:hover {
  color: #5cb85c;
  background: #fff;
  font-weight: bold;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #000000;
  background: #ffffff;
  font-weight: bold;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #bbbbbb;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #fff;
  color: #7386D5;
}

a.article,
a.article:hover {
  background: #6d7fcc !important;
  color: #fff !important;
}


/* ---------------------------------------------------
  CONTENT STYLE
----------------------------------------------------- */

#content {
  width: 100%;
  padding: 20px;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

.wrapper {
  display: table;
  height: 100%;
  width: 100%;
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  vertical-align: center;
}

.container-fostrap {
  display: table-cell;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}

h1.heading {
  color: #fff;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  color: #505050;
}
@media (min-width: 450px) {
  h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
} 
.card {
  display: block; 
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); 
    transition: box-shadow .25s; 
}
.card:hover {
  box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0, 0, 0, 0.37);
}

.card360{
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: rgb(241, 241, 241);
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: .25rem;
  margin-bottom: 5px;
}
.card360-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-header {
  padding: .10rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.082);
  border-bottom: 1px solid rgba(0,0,0,.125);  
}
.center {
	min-height: 100%;  
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: rgb(15, 24, 80);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.img-card {
  width: 100%;
  height:200px;
  border-top-left-radius:2px;
  border-top-right-radius:2px;
  display:block;
    overflow: hidden;
}
.img-card img{
  width: 100%;
  height: 200px;
  object-fit:cover; 
  transition: all .25s ease;
} 

.card-content {
  padding:15px;
  height: 110px;
  text-align:left;
}

.card-content small{
  color:rgb(122, 122, 122);
  position: absolute;
  bottom: 35px;
  right: 20px;
}
.card-title {
  margin-top:0px;
  font-weight: 600;
  font-size: 1.00em;
}
.card-title a {
  color: #000;
  text-decoration: none !important;

}
.card-read-more {
  border-top: 1px solid #D4D4D4;
}
.card-read-more a {
  text-decoration: none !important;
  padding:10px;
  font-weight:600;
  text-transform: uppercase
}
.card-read-more a:hover{
  color:red;  
}

.play {

  position:absolute; 
  width: 100px;
  left:35%;
  top:50px;
  opacity: 0.4; 
  filter: alpha(opacity=40);
}
.play:hover  {
  /*image que irá aparecer quando o mouse estiver em cima da imagem*/
  opacity: 1.0; 
  filter: alpha(opacity=100);
  width: 110px;
  left:34%;
}

/*Copy to clipboard*/
.wrapper3 {
/*position: absolute;*/
display: block;
/*height: 150px;*/
/*width: 95%;*/
top: calc(50% - 75px);
left: calc(50% - 400px);
}

.clipboard-target{
position: relative;
display: block;
height: auto;
width: 100%;
line-height: 30px;
text-align: center;
background-color: #1E1E1E;
cursor: pointer;
color: #FFFFFF;

text-decoration: none;
letter-spacing: 1.0px;
font-weight: 500;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
}

.clipboard-target2{
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  line-height: 30px;
  text-align: center;
  background-color: #1E1E1E;
  cursor: pointer;
  color: #FFFFFF;
  
  text-decoration: none;
  letter-spacing: 1.0px;
  font-weight: 500;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  }

#idIframe{
  color:#FFFFFF;
  padding: 5px;
}

#idIframe2{
  color:#FFFFFF;
  padding: 5px;
}
.cta2 {
/*position: relative;*/
display: block;
/*height: 50px;*/
line-height: 30px;
width: 100%;
top: 20px;
left: 25%;
background: #00bbbB;
border: none;
font-weight: 700;
font-size: 15px;
color: #fefefe;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
cursor: pointer;
margin-top: 20px;
margin-bottom: 25px;
}
.cta2:hover {
opacity: .85;
}
.cta2:hover,
.cta2:focus,
.cta2:active {
border: none;
outline: none !important;  
}

.popup {
position: absolute;
display: block;
width: 100px;
top: 0;
left: calc(50% - 50px);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background: #303030;
color: #fefefe;
text-align: center;

-webkit-animation: goupandfade 1.2s infinite;
-moz-animation: goupandfade 1.2s infinite;
-o-animation: goupandfade 1.2s infinite;
animation: goupandfade 1.2s infinite;
}

@keyframes goupandfade {
0%   { 
  top: 0;
  opacity: 0.75;
}
100% {
  top: -75px;
  opacity: 0;
}
}