:root{
  --da-blue: #3A49FF;
  --da-orange: #eb3518;
  --da-light-orange: #FF550B;
  --charcoal: #0f0c07;
  --da-darkblue: #002940;
}

.page-wrapper
{
  padding: 0;
  margin: 0;
  min-height: 100vh;
  position: relative;
  
}


.product-container
{
  position: relative;
  padding-bottom: 98%;
  border: 2px solid #0F0C07;
  /**transition-duration: 0.5s;**/
  border-radius: 4px!important;
  box-shadow: 0 0 10px #909090;
}


.product-img-container
{
  width: 100%;
  height: 100%;
  position: absolute;
}

.product-img-container img
{
  height:100%;
  width:100%;
  object-fit:contain;
}

.product-img-container img:hover
{
  -ms-transform: scale(1.0)!important; /* IE 9 */
  -webkit-transform: scale(1.0)!important; /* Safari 3-8 */
  transform: scale(1.0)!important; 
  transition: none!important;
}

.content
{
  padding-left: 5%;
  padding-right: 5%;
  /* padding-top: 120px; */
  padding-bottom: 80px;
  padding-top: 20px;
}

#exit-back-buttons
{
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 20px;
  margin-top: 30px;
}

.popup-content
{
  display:none;
  padding-bottom:15px;
}

.popup-container.open .popup-content
{
  display:block;
}

.popup-container.closed
{
  display:none;
  transition: 2s;
}

#exit-back-buttons button
{
}

.header
{
  position:sticky;
  top:0;
  z-index: 100;
  width: 100%;
  height: 100px;
}

.footer
{
  position: absolute;
  bottom: 0;
  width: 100%;
  
}

#cart-button
{
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 20px;
  margin-top: 30px;
}

#cart-button a
{
  border-radius: 50%;
  
}
#cart-button a:hover
{
  border-color: #0078F2!important;
  
}

h1
{
  background: #0f0c07;
  padding: 5px 64px;
  font-size: 72px;
  font-weight: 800;
  text-align: center;
  
}

/* h1 span
{
  background-image: linear-gradient(to bottom, var(--da-light-orange), yellow);
  text-fill-color:transparent;
  background-clip: text;
  
  -webkit-text-fill-color:transparent;
  -webkit-background-clip: text;
  text-stroke-width: 3px;
  text-stroke-color: var(--da-orange);
  
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--da-orange);


} */

h1 span.beta-text
{
  color:white;
  font-size: 40px;
  font-weight: 700;
  
}




.navbar
{
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 20px;
  /* background:var(--da-blue); */
  background-image: linear-gradient(to bottom, darkblue,var(--da-blue));
}

.navbar a
{
  color: var(--da-orange);
  transition: 0.5s;
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;

  -webkit-text-decoration-color: transparent;
  -moz-text-decoration-color: transparent;
}

.navbar a:hover
{
  color: #5d5d5d;
  transition: 0.5s;
  text-decoration-color: #5d5d5d;

  -webkit-text-decoration-color: #5d5d5d;
  -moz-text-decoration-color: #5d5d5d;
}

.navbar a:active
{
  color:black;
  transition: 0.5s;
}

.nav-container{
  padding: 15px;
  width: 54%;
  margin: 0 auto;
  background: none!important;

}

.nav-item:hover a{
  color: #0078F2!important;
  transition: 0.5s;
  text-decoration: none;
}

.nav-item a{
  transition: 0.5s;
  margin-right: 20px;
}

.header-btn{
  font-size: 1em;
  border: 0;
  transition: 0.5s;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: none;
  padding: 5px 10px;
}

.header-btn:hover{
  color: #0078F2;
  transition: 0.5s;
  border: 1px solid #0078F2;
  background: none;
}

.add-cart-btn{
  transition: 0.5s;
  border: 0;
  margin-top: 15px;
}

.add-cart-btn:hover{
  background: #323846;
  color: #ffffff;
  transition: 0.5s;
}

#to-downloader{
  transition: 0.5s;
  color: var(--da-light-orange);
  font-size: 2rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  animation-name: pulsating;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  border-radius: 10px;
  border-color: var(--da-orange);
  border-width: 4px;
  border-style:solid;
  padding:5px;
}

#to-downloader:hover{
  color: #5d5d5d; 
  transition: 0.5s;
  text-decoration-color: #5d5d5d;
  
}

body{
  background: #323846;
  background-attachment: fixed;
  color:white;
}

html, body{
  margin: 0;
  min-height: 100vh;
}

@keyframes pulsating{
  0% {
    /* color: var(--da-light-orange); */
    border-color: var(--da-light-orange);
  }
  50% {
    /* color:black; */
    border-color: black;
  }
  100% {
    /* color: var(--da-light-orange); */
    border-color: var(--da-light-orange);
  }
}

.coming-soon{
  font-size:60px;
  font-weight: 700;
  background-color:transparent;
  text-align:center;
  background-image: linear-gradient(to bottom, var(--da-light-orange), yellow);
  text-fill-color:transparent;
  background-clip: text;
  
  -webkit-text-fill-color:transparent;
  -webkit-background-clip: text;
  text-stroke-width: 1px;
  text-stroke-color: var(--da-orange);
  
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--da-orange);

}

.nav-btn span{
  padding-left: 5px;
}

.product-main-content{
  margin-top: 50px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #262626;
}

.product-details-content{
  margin-top: 30px;
  background: #262626;
  border-radius: 3px;
  padding: 15px 5px;
  
}

.footer{
  text-align:center;
}

.retro-reload-img{
  text-align: center;
  padding-top: 20px;
  /* position: relative;
  float: right;
  margin-left: auto;
  margin-right: auto; */
}

.retro-reload-img img{
  width: 45vw;
  box-shadow: 0 0 5px #000;
}

.close-link{
  float: right;
  padding-right: 15px;
}

.open-link{
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 30px;
  color: white;
}

.popup-container{
  text-align: center;

}

.dl-fix{
  
  margin-top: 35px;
}

.dl-fix-link{
  font-size: 30px;
  border: 4px solid var(--da-orange);
  border-radius: 10px;
  background-color: black;
  padding: 20px;
}

.fix-img{
  max-width: 400px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo{
  height: 60px;
}

/* .store-name{
  font-size: 90px;
} */

.link{
  color: #0078F2;
  text-decoration: underline;
  transition: 0.5s;
}

.link:hover{
  color:#5d5d5d;
  transition: 0.5s;
}

.product-sort-menu{
  float: right;
  margin-top: 5px;
}

.product-sort-menu select{
  background: #0F0C07;
  color: white;
  transition-duration: 0.5s;
  border: 1px solid #ffffff;
  border-radius: 3px;
  font-size: 15px;
  padding: 1px 3px;
}


.product-sort-menu select:hover{
  transition-duration: 0.5s;
  border: 1px solid #0078F2;
}


.product-sort-menu select option {
  background-color: #323846;
}

.product-sort-menu select option:hover {
  background-color: #ffffff!important;
}

.extra-info
{
  background-color:#22222299;
  border-collapse:collapse;
  
}

.extra-info td
{
  padding: 5px;
  border: 1px solid black;
}
.product-description
{
  font-size: 15px;
  padding-bottom: 15px;
  line-height: 28px;
}
.long-description
{
  font-size: 15px;
  padding-bottom: 15px;
  line-height: 28px;
}
.already-purchased-message {
	padding-top: 15px;
}
.themes-page {
	 margin-top: 50px;
}
.themes-page h5 {
	 text-align: center;
}

#cart-button a span#cart-count {
    display: inline-block;
    width: 18px;
    height: 17px;
    background: red;
    font-size: 11px;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    right: 0;
}

.product-img-container {
    overflow: hidden;
}

.product-img-container img {
    border-radius: 4px;
    transition: all .3s;
}

/* .product-img-container:hover img {
    transform: scale(1.2);
} */


.carousel-inner .product-img-container:hover img {
    transform: scale(1);
}

#featured {
    width:60%;
}

.carousel-caption {
    background: #424242 !important;
    bottom: 220px !important;
    border-radius: 8px !important;
    width:50% !important;
}

.carousel-caption h5 {
    font-weight: bold!important;
    font-size: 19px!important;
}

.other-header {
    font-size: 25px !important;
    margin-top: 30px!important;
    color: white!important;
}

.product-small .product-price {
    width: auto;
}

.content {
    padding-top: 0;
}

.featured-header {
    font-size: 38px !important;
    color: white !important;
    text-align: center !important;
}

.card.nav-container {
    background: #0d0d0d;
    border-radius: 5px;
    padding: 7px 9px;
    width: 75%;
}

.nav-item a {
    display: inline-block;
    line-height: 40px;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 13px;
}

.themes-page {
    margin-top: 10px;
}

.themes-page h5 {
    font-size: 38px !important;
    color: white !important;
    text-align: center !important;
}

#cart-button a.btn.btn-primary.header-btn {
    border-color: #fff;
}

#cart-button a span#cart-count {
    background: #fff;
    color: #000;
}	

/*#featured {
    width: 60%;
    height: 500px;
    overflow: hidden;
}

.carousel-caption {
    bottom: 30px !important;
}

.carousel-item.product-container.card {
    height: 450px;
    padding: 0;
}*/

.themes-page h5 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    text-transform: capitalize;
}

.nav-item {
    margin-top:10px;
    margin-bottom: 25px;
}

.nav-item a {
font-size: 18px;
border-right: 1px solid #fff;
border-radius: 0px;
line-height: 30px;
padding-right: 20px;
}

.nav-item:last-child a {
    border-right: 0px;
}

.nav-item a:hover {
    color: #CC9E61;
}

.add-cart-btn {
    font-size: 15px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
}

.add-cart-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}


.checkout-container input[type="submit"] {
    color: #fff !important;
    font-size: 15px!important;
}

.checkout-container input[type="submit"]:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.already-purchased-message a.btn.btn-primary.add-cart-btn {
    border:none !important;
    color: #fff !important;
    font-size: 15px!important;
    line-height: 34px!important;
    padding: 0 8px!important;
    border-radius: 4px!important;
}


.already-purchased-message a.btn.btn-primary.add-cart-btn:hover {
    background: #fff !important;
    border:none !important;
    border-color: #fff !important;
    color: #000 !important;
}

.carousel-item {
perspective: 500px;
}
/* .product-img-container {
    height: 500px !important;
}

#product-list .product-img-container, .product-small .product-img-container {
    height: 100% !important;
} */

.checkout-container .price-container {
    margin-bottom:0px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    border-radius: 5px;
    display: inline-block;
    padding:0px;
    background:#424242;
    margin-bottom: 30px;
}

.checkout-container .price-container th {
    font-weight:normal;
    padding:10px 15px;
    font-size:16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.checkout-container .price-container tr:last-child th {
    border-bottom:0px;
}

.checkout-container .price-table {
    width:100%;
    margin-bottom: 0px;
}