@import url('//fonts.googleapis.com/css?family=Source+Sans+Pro:100,200,400,600,700');
@import url('//fonts.googleapis.com/css?family=Ruda:400,700,900');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* -webkit-font-smoothing: antialiased; */
}

a {
  color: #04A1E9;
  text-decoration: none;
}

.gpn {
  font-family: 'Ruda', sans-serif;
  letter-spacing: -0.5px;
  font-weight: 600;

  background: -webkit-linear-gradient(#FAC95C, #F87D22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

a:hover,
a:visited,
a:link,
a:active {
  color: #04A1E9;
  text-decoration: none !important;
}

hr {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

body {
  background-color: #F9F9F9!important;
  font-family: 'Source Sans Pro', sans-serif;
}

.row {
  padding: 0px!important;
}

.col {
  padding: 0px!important;
}

.header {
  background-color: #671400;
}

.header .tag-container {
}

.tag-container .tag {
  transition: all 0.25s ease 0;
}

.tag-container .tag:hover {
  opacity: 0.5;
  transform: scale(0.95);
  cursor: pointer;
}

.button {
  background-color: clear;
  display: inline-block;
  margin-top: 10px;
  transition: all 0.25s ease 0;
  cursor: pointer;
}

.button.left {
  margin-right: -20px;
}

.button.right {
  background-color: clear;
  position: absolute;
  right: 0px;
}

.button:active {
  opacity: 0.5;
  transform: scale(0.95);
}

.entity-button {
  background-color: clear;
  display: inline-block;
  transition: all 0.25s ease 0;
  cursor: pointer;
}

.entity-button:active {
  opacity: 0.5;
  transform: scale(0.95);
}

.footer {
  background-color: #671400;
  color: white;
}

.footer a {
  color: #C9293C;
}

.apps {
  background-color: #F2F2F2;
}

.content {
  margin-top: 20px;
  margin-bottom: 40px;
  max-width: 1400px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  /* padding-left: 20px; */
  /* padding-right: 20px; */
  
}

.card-container {
  /* margin: 10px; */
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075); */
  background-color: white;
  /* width: 100%; */
  border: 1px solid rgba(0, 0, 0, 0.1);

}

.entity-card {
  max-height: 150px;
  padding:10px;
}

.card-title {
  margin-top: 20px;
  margin-bottom: 40px;
}

.entity-preview {
  height: 80px;
  width: 104px;
  margin: 10px;
  margin-top: 15px;
  display: inline-block;
}

.entity-content {
  margin-top: 10px;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-right: 55px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-content {
  margin-top: 10px;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px!important;
}

.skin-name {
  font-size: 20px;

}

@media screen and (max-width: 768px) { 
	.skin-name {
    padding-top: 4px!important;
    font-size: 16px;
    /* position: absolute; */
    padding-left: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .entity-preview {
    height: 70px;
    width: 66px;
    margin: 4px;
    margin-top:15px;
    margin-right: 0px;
    margin-bottom: 15px;
    display: inline-block;
  }

  .entity-content {
    margin-top: 10px;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    margin-right: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .category-content {
    margin-top: 10px;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  

}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #05ADF1;
  /*    margin:20px;*/
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  min-width: 64px !important;
  min-height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pop-in {
  0% { opacity: 0; -webkit-transform: scale(0.5); }
  100% { opacity: 1; -webkit-transform: scale(1); }
}
@-moz-keyframes pop-in {
  0% { opacity: 0; -moz-transform: scale(0.5); }
  100% { opacity: 1; -moz-transform: scale(1); }
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}