* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container{
  width: 100%;
  max-width: 800px;
  margin:20px auto;
}


.content.page{
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
}

.container-uninstall .content{
  position:absolute;
  top:40%;
  left:25%;
  display: flex;
  color:#fff;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-family: 'sans serif';
}

.btn-install{
  border-radius: 50px;
  background: #FAAB00;
  padding: 10px 40px;
  color: #fff;
  font-size: 25px;
  margin-top: 20px;
  font-family: 'roboto';
}
.btn-install a{
  text-decoration: none;
  color : #fff;
}

.thankyou{
  font-size: 35px;
  font-family: sans-serif;
}

.thankyoulogo{
  background : url(../images/thankyou.png);
  width:243px;
  height:75px;
  background-repeat: no-repeat;
  margin:0;
}



#extname {
  font-family: Roboto;
  font-size: 28px;
  text-align: center;
  color: #515151;
  font-weight: 400;
  margin-bottom: 20px;
}

label{
  font-weight: 600;
}

#alert-success, #alert-danger{
  display:none;
}

.logo{
  background : url(../images/logo.png);
  width:200px;
  height:62px;
}

.title{
  width:250px;
  margin:10px auto;
}

footer{
  position:fixed;
  bottom:0;
  padding:10px;
  width:100%;
  background: #343a40;
  font-family: Roboto;
  font-size:14px;
}

header{
  background:#343a40;
  padding:5px;
  width:100%;
  height:65px;
  display: flex;
  align-items: center;
}

footer p{
  text-align: center;
  color:#fff;
  margin:0;
}

footer a{
  margin-left:10px;
  color:#fff;
  opacity: .8;
  text-decoration: none;
}

footer a:hover{
  opacity: 1;
  color:#fff;
}

#container-list{
  margin : 20px 0;
  min-height: 800px;
}

#tabs-id a{
  cursor : pointer;
}

figure img{
  border-radius: 100px;
}

.loading{
  width:64px;
  height:64px;
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.nav-item {
  margin : 10px;
  color: #007bff;
}
.nav-item a{
  text-decoration:none;
}
.nav-item a:hover{
  color:#fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: #007bff;
  font-size : 14px;
}
.navbar-dark .navbar-nav .nav-link:hover {
  text-decoration: underline;
  color: #007bff;
}

@media only screen and (max-width: 1620px) {
  figure{
    flex-direction: column;
  }
  figure img{
    border-radius: 100px;
  }
}

@media only screen and (max-width: 1570px) {
  #container-list{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1200px) {
  #container-list{
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 668px) {
  #container-list{
    grid-template-columns: 1fr;
  }
}

