@charset "UTF-8";

/*=======*/
/*General*/
/*=======*/
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #64a19d;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #64a19d;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --black: #000000;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  /* --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
  /* --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  overflow-x:hidden;
}

.NotScrollable{
  position: fixed; overflow-y:scroll ; width: 100%;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #64a19d;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #467370;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-image:url("https://scorpionclothing.gr/images/camo-small.png");
  background-size:  cover;
  background-attachment: fixed;
  overflow-x: hidden;
  overflow-y: hidden;
  zoom: 0.9;
}

li{
  white-space: nowrap;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-radius: 25px;
  border:2px solid #65A07B;
  background-color:#65A07B;
}


hr.thin{
  border-radius: 10px;
  border:1px solid grey;
  background-color: grey;
}

hr.thick{
  border-radius: 20px;
  border:1.2px solid rgba(0, 0, 0, 0.4);
  margin-bottom: 3em;
  background-color: rgba(0, 0, 0, 0.4);
}

hr.normal{
  align-items: center;
  border-radius: 15px;
  border:1.2px solid rgba(0, 0, 0, 0.4);
  background-color: rgba(0, 0, 0, 0.4);
}


.after-loading-container {
  position: relative;
  min-height: 110vh;
  overflow: visible;
}

.loading-container
{         
  position:relative;
  height:100vh;
  overflow: hidden;
}

#content-wrap {

  padding-bottom: 20rem;

}

.form-group input{
   width:90%;
}

.form-group button{
  background-color:#2d2b30;
}

.desc{
  text-align: center;
}

.main{
  background:#F8F9FA;
  padding : 0px;
  width:100%;
  height: 100%;
  position: relative;
  border-radius: 5px;
}

.carousel-item img{
  /* border-radius: 10px; */
  width: 100%;
  height: 100%;
}
.carousel-control-next-icon,.carousel-control-prev-icon{
  border-radius: 25px;
  width : 10px;
  height: 50px;
  background-color: black;
}
.carousel-control-next
{
    position: absolute;
    top:45%;
    right: 10px;
    border-radius: 25px;
    width : 10px;
    height: 50px;
    background-color: black;
  }

.carousel-control-prev
  {
    position: absolute;
    top:45%;
    left:10px;
    border-radius: 25px;
    width : 10px;
    height: 50px;
    background-color: black;
  }

.carousel-inner>.carousel-item {
    -webkit-transition: -webkit-transform 0.3s ease-in-out !important;
    -o-transition: -o-transform 0.3s ease-in-out !important;
    transition: transform 0.3s ease-in-out !important;
}

.ninety{
  width:90%;
  border-radius: 5px;
}
.jumbotron{
  background-color: rgba(231, 234, 236, 0.3);
}
.jumbotron-mini{
  background-color: white;
  padding: 0.5em 0.5em;
  border-radius: 1.5px;
  box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
}

.btn-dangerous{
  border: 0px;
  margin: 0px 0px;
  border-radius: 0px;
}


  .phonecall{
    position: fixed;
    bottom: 3em;
    right:1em;
    display:none;
    border-radius: 100%;
    color:white;
    width:5em;
    height: 5em;
    z-index: 2!important;
    background-color: #2D2B30;
  }
  .scrollToTop{
    position: fixed;
    bottom: 9em;
    right:1em;
    display:none;
    border-radius: 100%;
    color:white;
    width:5em;
    height: 5em;
    z-index: 2!important;
    background-color: #2D2B30;
    transition: opacity 1s ease-in-out;
  }

  .scrollToTop:active{
  
    background-color: #2D2B30!important;
 
  }

.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

 #content-wrap {

    padding-bottom: 12em;
  }


#loadingDiv {
    position:absolute;;
    top:0;
    left:0;
    bottom:0;
    width:100%;
    height:100%;
    background-color:#fff;
    overflow : hidden;
    z-index : 20!important;
}

.int-img:hover{
  opacity: 0.7;
}

/*==============*/
/*    NavBar    */
/*==============*/

.redIndicator{
  position: absolute;
  top:6px;
  right: 5px;
  border-radius: 50%;
  width:20px;
  height:20px;
  background-color: #ef4343;
  color: white;
  text-align: center;
  vertical-align: baseline;
  padding:2px 2px;
}

.navbar{
  background-color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}
/* 
#header-container{
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
} */

.nav-link span{
  color: #3A3A3A;
  display: inline-block;
}
.nav-link img:hover{
  opacity: 0.8;
}
.nav-link img:active{
  opacity: 1;
}
.nav-link{
  text-align: center;
}

.nav-link span:after {
  content: '';
  display: block;
  border-radius: 25px;
  width:0;
  height: 3px;
  background: #65A07B;
  transition: width .3s;
}

.nav-link span:hover::after {
  width:100%;
  transition: width .3s;
}

.row{
  flex-grow: 1;
}

.mt-n2{
  margin-top: -1.2rem !important;
}
.mt-n2-icon{
  margin-top: -2.5rem !important;
}
.mb-n2{
  margin-bottom: -0.5rem !important;
}
#menu-nav{
  z-index: 2;
  font-size: large;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.75);
}

#menu-nav a span{
  color:#FFFFFF;
}

#f-nav{
  z-index: 3;
}
#logo-bck img{
  width: 360px; height:90px; 
}

#logo-bck img:hover {
  opacity: 0.75;
}
#logo-bck img:hover:active {
  /*content:url("https://scorpion-store.herokuapp.com/images/logo4.png");*/
  opacity: 1;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar.navbar-fixed-top.fixed-theme {
    background-color: #222;
    border-color: #080808;
    box-shadow: 0 0 5px rgba(0,0,0,.8);
    position: fixed;
    width:100%;
    top:0;
    z-index: 2;
}
.navbar.navbar-fixed-top.fixed-theme2{
    background-color: #222;
    border-color: #080808;
    box-shadow: 0 0 5px rgba(0,0,0,.8);
    position: fixed;
    width:100%;
    top:0;
    z-index: 2;
}


.container-fluid.fixed-theme,.container-fluid.fixed-theme2,#main.fixed-theme,#main.fixed-theme2,
.navbar.navbar-fixed-top.fixed-theme,.navbar.navbar-fixed-top.fixed-theme2,
.container-fluid,#main
{
    transition: 0.0s;
    -webkit-transition:  0.0s;
}

#main.fixed-theme{
  position: relative;
  margin-top: 4em;
}
#main.fixed-theme2{
  position: relative;
  margin-top: 4em;
}

/*#main2.fixed-theme{
  position: relative;
  margin-top: 3em;
}
*/
.blank-mini{
  border:1px solid rgba(0,0,0,0.2);
  width:3.8em;
  height:3.8em;
  border-radius: 50%;
}

.toggler-position{
  position: absolute;
  left: 1em;
}
.hover-img {
    color: #fff;
}

.hover-img * {
  box-sizing: border-box;
  transition: all 0.45s ease;
}

.hover-img:before,
.hover-img:after {
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 32px solid rgba(0, 0, 0, 0.5);
  border-bottom: 32px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
  transform: scaleY(2);
}

.hover-img img {
  vertical-align: top;
  max-width: 100%;
  backface-visibility: hidden;
}

.hover-img figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1em;
  opacity: 0;
  z-index: 2;
  transition-delay: 0.1s;
  font-size: 24px;
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hover-img:hover:before,
.hover-img:hover:after {
  transform: scale(1);
  opacity: 1;
}

.hover-img:hover > img {
  opacity: 0.7;
}

.hover-img:hover figcaption {
  opacity: 1;
}

@media screen and (max-width:960px){
  .mt-n2{
    margin-top: -0rem !important;
  }
  .mt-n2-icon{
    margin-top: -0rem !important;
  }
  .go-left-first{
    position: absolute; 
    left:0.5em;
  }
  .go-left-second{
    position: absolute;
    left:7em;
  }
  .go-left-second-logged{
    position: absolute;
    left:9em;
  }
}
@media screen and (max-width:530px){
  .lol{
    display: none;
  }
}



/*==============*/
/* Landing Page */
/*==============*/

.top-section {
  padding: 10rem 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.025) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(38, 38, 37, 1) 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.signup-section {
  padding: 10rem 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.025) 0%, rgba(0, 0, 0, 0.5) 80%, #2D2B30 100%);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.projects-section {
  box-shadow: 0px 12px 6px 7px rgba(0,0,0,0.67);
  margin-top: -40em;
}

.first{
  background-color: rgba(38, 38, 37, 1);
  display: block;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  opacity:1;
  object-fit: cover;
}

.content{
  background-color: #3A3E44;
  opacity: .8;
  position:absolute;
  width: 40em;
  top:10em;
  right:20em;
  padding:20px 20px;
  border-radius: 5px;
  color:white;
  text-align: left;
  font-size: large;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
.content hr {
  width : 90%;
}

.content-contact{
  position:absolute;
  padding:2em 2em;
  top:15em;
  left:5em;
  color:white;
  text-align: center;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
               0px 8px 13px rgba(0,0,0,0.1),
               0px 18px 23px rgba(0,0,0,0.1);
  background-color: #3A3E44;
  border-radius: 5px;
  opacity:0.9;
}

.carouselHover img{
  transition: 0.3s;
}

.carouselHover:hover img{
  opacity: 0.8;
  transform: scale(1.1);
}

.text-landing{
  font-size: large;
}

.card-land-img{
  width: 75%!important;
}

@media screen and (max-width:1550px){
  .content{
    position: absolute;
    width: 40em;
    top:8em;
    right:2em;
    color:white;
    text-align: left;
    font-size: medium;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                  0px 8px 13px rgba(0,0,0,0.1),
                  0px 18px 23px rgba(0,0,0,0.1);
  }

  .projects-section {
    box-shadow: 0px 12px 6px 7px rgba(0,0,0,0.67);
    margin-top: -40em;
  }
}  


@media screen and (max-width:1300px){
  .content{
    position: absolute;
    width: 35em;
    top:8em;
    right:5em;
    color:white;
    text-align: left;
    font-size: small;
      text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                   0px 8px 13px rgba(0,0,0,0.1),
                   0px 18px 23px rgba(0,0,0,0.1);
  }
  .projects-section {
    box-shadow: 0px 12px 6px 7px rgba(0,0,0,0.67);
    margin-top: -30em;
  }
}  


@media screen and (max-width:1000px){

.first{
  background-color: rgba(38, 38, 37, 1);
  display: block;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  height:554px;
  opacity:1;
  object-fit: cover;
}
.content{
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  width:28em;
  top:8em;
  right: 1em;
  color:white;
  text-align: left;
  text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
}
.text-landing{
  font-size: medium;
}
.projects-section {
  box-shadow: 0px 12px 6px 7px rgba(0,0,0,0.67);
  margin-top: -25em;
}
 .content-contact{
    position:absolute;
    padding:2em 2em;
    top:60%;
    left:1em;
    right:1em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
}

@media screen and (max-width:750px){


  .content-contact{
    position:absolute;
    padding:2em 2em;
    top:62%;
    font-size: 14px;
    left:1em;
    right:1em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
}  

@media screen and (max-width:528px){

  .content-contact{
    position:absolute;
    padding:2em 2em;
    top:62%;
    font-size: 14px;
    left:1em;
    right:1em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
}
@media screen and (max-width:442px){

  .content-contact{
    position:absolute;
    padding:2em 2em;
    top:57%;
    font-size: 12px;
    left:1em;
    right:1em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
  .con{
    font-size:10.5px;
  }
}  

@media screen and (max-width:357px){

  .content-contact{
    position:absolute;
    padding:2em 2em;
    top:55%;
    font-size: 12px;
    left:1em;
    right:1em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
}

@media screen and (max-width:330px){

  .content-contact{
    position:absolute;
    padding:2em 2em;
    top:57%;
    font-size: 12px;
    left:0em;
    right:0em;
    color:white;
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                 0px 8px 13px rgba(0,0,0,0.1),
                 0px 18px 23px rgba(0,0,0,0.1);
    background-color: #3A3E44;
    border-radius: 5px;
    opacity:0.9;
  }
}

/*=========*/
/*  Modals */
/*=========*/

.hideOverflow{
  overflow: hidden;
}

.Xbutton{
  position: absolute;
  right: 0px;
  top:0px;
  width:2.2em;
  height:2.2em;
  z-index: 3;
  border-radius: 5px;
}

.cancelbtn i:hover{
    opacity:0.8;
    color: #f44336;
}


.modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10 !important; /* Sit on top */
  left: 0;
  top: 0;
  padding-top:80px;
  padding-bottom:80px;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  border-radius: 5px;
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}

.modal::-webkit-scrollbar {
  display: none;
}
.modal-interior{
  border-radius: 0px;
  margin: auto auto;
  width: 70em;
  height: auto;
}

/* .modal-content {
  display: flex;
    flex-direction: column;
    justify-content: center;
} */
.animate {
    -webkit-animation: animatezoom 0.3s;
    animation: animatezoom 0.3s
}

@-webkit-keyframes animatezoom {
    from {
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      transform-style: preserve-3d;
      -webkit-transform: rotateY(-70deg);
      -moz-transform: rotateY(-70deg);
      -ms-transform: rotateY(-70deg);
      transform: rotateY(-70deg);
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      opacity: 0;
    }
    to {
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg);
      opacity: 1;
    }
}

@keyframes animatezoom {
    from {
      -webkit-transform-style: preserve-3d;
      -moz-transform-style: preserve-3d;
      transform-style: preserve-3d;
      -webkit-transform: rotateY(-70deg);
      -moz-transform: rotateY(-70deg);
      -ms-transform: rotateY(-70deg);
      transform: rotateY(-70deg);
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      transition: all 0.3s;
      opacity: 0;
    }
    to {
      -webkit-transform: rotateY(0deg);
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg);
      opacity: 1;
    }
}


/*=============*/
/*Products     */
/*=============*/
.card-footer{
  background-color: white;
}

.card{
  width:90%;
  border : solid 1px rgba(0,0,0,0.2);
  box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
}
.card-admin{
  width:90%;
  border : solid 1px rgba(0,0,0,0.2);
  box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
}

.card img{
  width:100%;
  height:100%;
}
.card img{
  transition: .5s ease;
}

.product-img:hover img{
  opacity:0.5;
}

.card button{
  width:100%;
  height:100%;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.product-img:hover .middle {
  opacity: 1;
}

.text {
  border-radius: 5px;
  background-color: #65A07B;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}
.text:hover {opacity: 0.8}

.product{
  background: #F8F9FA;
  padding : 0px;
  width:90%;
  height: 100%;
  position: relative;
  margin-bottom:2em;
}
.opac {
  opacity : 0.5;
}
.hidden{
  display: none;
}

.shownImage{
  box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
  border-radius: 5px;
  border: 2px solid #FAFAFA;
}

.zoom {
  display:inline-block;
  margin:0;
  padding:0;
}
		
/* magnifying glass icon */
.zoom:after {
	content:'';
	display:block; 
	width:33px; 
	height:33px; 
	position:absolute; 
	top:0;
	right:0;
	background:url(/images/magnifyingGlass.png);
}

.zoom.without-after-element:after {
  content: none;
}



.zoom img {
display: block;
}

.zoom img::selection {
	 background-color: transparent;
}

#description{
  height:auto;
  overflow:hidden;
}
#description:after {
  content  : "";
  position : absolute;
  z-index  : 1;
  bottom   : 0;
  left     : 0;
  pointer-events   : none;
  background-image : linear-gradient(to bottom, 
                    rgba(255,255,255, 0), 
                    rgba(255,255,255, 1) 90%);
  width    : 100%;
  height   : 4em;
}
#description.without-after-element:after {
  content: none;
}

.descriptionMini{
  height:70px;
  overflow:hidden;
}
.descriptionMini:after {
  content  : "";
  position : absolute;
  z-index  : 1;
  bottom   : 0;
  left     : 0;
  pointer-events   : none;
  background-image : linear-gradient(to bottom, 
                    rgba(255,255,255, 0), 
                    rgba(255,255,255, 1) 90%);
  width    : 100%;
  height   : 4em;
}
.descriptionMini.without-after-element:after {
  content: none;
}


.colors ul{list-style:none; padding:0; margin: 0;}

.colors li{margin: 0 20px 0 0; display: inline-block;}

.colors label{cursor: pointer;}

.colors input{display:none;}

.colors input[type="radio"]:checked + .swatch{box-shadow: inset 0 0 0 4px #F6F7F7;}

.colors input[type="radio"]:checked + .swatch-mini{box-shadow: inset 0 0 0 2.5px #F6F7F7;}

.swatch{
  display:inline-block;
  vertical-align: middle;
  height: 40px;
  width:40px;
  margin: 0 5px 0 0 ;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
}
.swatch-mini{
  display:inline-block;
  vertical-align: middle;
  height: 30px;
  width:30px;
  margin: 0 2px 0 0 ;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
}

.swatch-mini-2{
  display:inline-block;
  vertical-align: middle;
  height: 30px;
  width:30px;
  margin: 0 2px 0 0 ;
  border-radius: 0%;
  border: 1px solid #d4d4d4;
}

.swatch-mini:hover{
  opacity: 0.8;
}

.swatch-mini-2:hover{
  opacity: 0.8;
}

.mini-images{
  box-shadow: 2px 2px 2px 0px rgba(0,0,0,0.1);
  border-radius: 5px;
  border: 2px solid #FAFAFA;
  width:100%;
  height:100%;
}

.mini-images:hover{
  opacity:0.8;
}

@media screen and (min-width:775px){
  .idiotCol{
    padding-left: 0px;
  }
}

@media screen and (max-width:4000px){

  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto auto;
    width: 60em;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 100%;
    width: 100%;
  }
  .product-img{
    overflow: hidden;
  }
  .card img{
    width:100%;
    height:100%;
    transition: 0.3s;
    z-index: -1;
  }

  .card img:hover{
    transform: scale(1.1);
  }

  /* .card{
    width:70%;
    height:70%;
  } */
  .products-row{
    width :100em;
    height: auto;
    margin: 0 auto;
    padding: 5em 5px ;
    position: relative;
  }  
}

@media screen and (max-width:1830px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60em;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 100%;
    width: 100%;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
  .products-row{
    width:100%;
    position: relative;
    padding: 0px 0px;
    margin: 0px 0px;
    background-color: #F8F9FA;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
  }
}

@media screen and (max-width:1400px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60em;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 100%;
    width: 100%;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:80%;
    height:80%;
  } */
  .card .btn{
    font-size: 12px;
  }
}

@media screen and (max-width:1280px){
 .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60em;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 100%;
    width: 100%;
  }
   .card img{
    width:100%;
    height:100%;
  } 
  /* .card{
    width:80%;
    height:80%;
  } */
  .card .btn{
    font-size: 14px;
  }
}

@media screen and (max-width:1200px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60em;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 70%;
    width: 70%;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:80%;
    height:80%;
  } */
}



@media screen and (max-width:992px){
  /*change*/
  .should-hide{
    background-color: white;
  }
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 90%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    height: 60%;
    width: 70%;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:80%;
    height:80%;
  } */
  .showIMG{
    margin-left:0em;
  }
}

@media screen and (max-width:768px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 60%;
    height: 60%!important;
  }
  .hide{
    display: none;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
  .showIMG{
    margin-left:0em;
  } 
}

@media screen and (max-width:710px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 60%;
    height: 60%!important;
  }
  .hide{
    display: none;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
}

@media screen and (max-width:680px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 60%;
    height: 60%!important;
  }
  .hide{
    display: none;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
}

@media screen and (max-width:650px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 60%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 60%;
    height: 60%!important;
  }
  .hide{
    display: none;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
}

@media screen and (max-width:620px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    /* border: 2px solid #888; */
    width: 70%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 70%;
    height: 70% !important;
    height: 35rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
  .hide{
    display: none;
  }
}

@media screen and (max-width:575px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    /* border: 2px solid #888; */
    width: 70%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 70%;
    height: 70%!important;
  }
  /* .card img{
    width:100%;
    height:30rem;
  } */
  .hide{
    display: none;
  }
}

@media screen and (max-width:530px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    /* border: 2px solid #888; */
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); */
  }
  .modal-carousel img{
    width: 80%;
    height: 35rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
 .hide{
    display: none;
  }
}

@media screen and (max-width:500px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 30rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
  .hide{
    display: none;
  }
}
@media screen and (max-width:460px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  /* .modal-carousel img{
    width: 80%;
    height: 80%!important;
  } */
  .card img{
    width:100%;
    height:100%;
  }
  /* .card{
    width:70%;
    height:70%;
  } */
  .hide{
    display: none;
  }
}

@media screen and (max-width:435px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 80%!important;
  }
  .card img{
    width:100%;
    height:100%;
  }
  .card{
    width:100%;
    height:100%;
  }
  .hide{
    display: none;
  }
}


@media screen and (max-width:390px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 23rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  .card{
    width:100%;
    height:100%;
  }
  .hide{
    display: none;
  }
  
}
@media screen and (max-width:360px){
  .modal-content {
    border-radius: 5px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 23rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  .card{
    width:100%;
    height:100%;
  }
  .hide{
    display: none;
  }
  
}

@media screen and (max-width:323px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 14rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  .card{
    width:100%;
    height:100%;
  }
  .hide{
    display: none;
  }
}

@media screen and (max-width:300px){
  .modal-content {
    border-radius: 0px;
    overflow: hidden;
    background-color :rgba(0, 0, 0, 0);
    margin: auto;
    width: 80%;
    height: auto;
    /* box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);  */
  }
  .modal-carousel img{
    width: 80%;
    height: 20rem;
  }
  .card img{
    width:100%;
    height:100%;
  }
  .card{
    width:100%;
    height:100%;
  }
  .hide{
    display: none;
  }
}

/*=============*/
/*Footer*/
/*=============*/

.page-footer{
  z-index: 0;
  background-color: #2D2B30;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: white;
  height: 13rem;
  padding-top: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width:960px){
  
  #content-wrap {

    padding-bottom: 13em;
  }

  .page-footer{
    background-color: #2D2B30;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    color: white;
    height: 14rem;
    padding-top: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

}

@media screen and (max-width:768px){
  
  #content-wrap {
    padding-bottom: 34rem;
  }

  .page-footer{
    background-color: #2D2B30;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    color: white;
    height: 34rem;
    padding-top: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
  }

}

.page-footer a{
  color: #FFFFFF;
}

#logo-foot img{
  width: 80px;
  height: 71px;
}

#logo-foot img:hover {
  opacity: 0.75;
}

#logo-foot img:hover:active {
  /*content:url("https://scorpion-store.herokuapp.com/images/logo3.png");*/
  opacity: 1;
  background-color: rgba(255, 255, 255, 0);
  filter: drop-shadow(5px 5px 5px #222);
  transform: translateY(4px);
}


/*===============*/
/*Login-Register */
/*===============*/

.wrninput{
   background-color: #F8D7DA;
   color: #721C24;
}

.wrninput:focus{
   background-color: #FFFFFF;
   color: #000000;
}

.fa-info-circle:hover{
   color: #9AAF5E;
}

.facebook{
  background-color: #2d2b30;
  border:0px solid black;
}

.facebook:hover{
  background-color: #2D88FF;
}

.google{
  background-color: #2d2b30;
  border:0px solid black;
}

.google:hover{
  background-color: #DD4B3E;
}

.tooltiptext {
  margin-left:-14em ;
  font-size: 15px;
  font-weight: 500;
  width: 200px;
  border-radius: 5px;
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 3px 3px 3px 3px;
  position: absolute;
  overflow-wrap: break-word;
  z-index: 1;
  opacity: 0.0;
  transition: visibility 0s 0.3s, opacity 0.3s linear;
}
.fa-info-circle:hover .tooltiptext {
  visibility: visible;
  opacity: 1.0;
  transition: opacity 0.3s linear;
}

@media screen and (min-width:1000px){
  .tooltiptext {
    margin-left:2em ;
    font-size: 15px;
    width: 200px;
    font-weight: 500;
    visibility: hidden;
    background-color: black;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 3px 3px 3px 3px;
    position: absolute;
    overflow-wrap: break-word;
    z-index: 1;
    opacity: 0.0;
    transition: visibility 0s 0.3s, opacity 0.3s linear;
}
  .nothidden{
      display: none;
  }

}

@media screen and (min-width:574px){
  .nothidden{
      display: none;
  }
}

.onep {
  width:80%;
}

/*===============*/
/*Flashes */
/*===============*/

.al{
  width:100%;
  height:2em;
  padding-top:-2em;
}
.alert-suc{
  background-color: #D4EDDA;
  color: #155724;
}
.alert-dan{
  background-color: #F8D7DA;
  color:#721C24;
}

/*============*/
/*upload image*/
/*============*/

.preview-images-zone {
    width: 100%;
    border: 1px solid #ddd;
    min-height: 180px;
    /* display: flex; */
    padding: 5px 5px 0px 5px;
    position: relative;
    overflow:auto;
}
.preview-images-zone > .preview-image:first-child {
    height: 185px;
    width: 185px;
    position: relative;
    margin-right: 5px;
}
.preview-images-zone > .preview-image {
    height: 90px;
    width: 90px;
    position: relative;
    margin-right: 5px;
    float: left;
    margin-bottom: 5px;
}
.preview-images-zone > .preview-image > .image-zone {
    width: 100%;
    height: 100%;
}
.preview-images-zone > .preview-image > .image-zone > img {
    width: 100%;
    height: 100%;
}
.preview-images-zone > .preview-image > .tools-edit-image {
    position: absolute;
    z-index: 100;
    color: #fff;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}
.preview-images-zone > .preview-image > .image-cancel {
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    margin-right: 10px;
    cursor: pointer;
    display: none;
    z-index: 100;
}
.preview-image:hover > .image-zone {
    cursor: move;
    opacity: .5;
}
.preview-image:hover > .tools-edit-image,
.preview-image:hover > .image-cancel {
    display: block;
}
.ui-sortable-helper {
    width: 90px !important;
    height: 90px !important;
}


/*======================*/
/* Custom T-Shirt Images*/
/*======================*/

.bottomImage{
  position:relative;
  top:0;
  left:0;
}

@media screen and (min-width:1201px){
  .topImage{
    position:absolute;
    top:132px;
    left:235px;
    width:30%;
  }
}

@media screen and (max-width:1200px){
  .topImage{
    position:absolute;
    top:132px;
    left:195px;
    width:32%;
  }
}

@media screen and (max-width:992px){
  .topImage{
    position:absolute;
    top:140px;
    left:282px;
    width:25%;
  }
}

@media screen and (max-width:768px){
  .topImage{
    position:absolute;
    top:130px;
    left:190px;
    width:32%;
  }
}

@media  screen and (max-width:576px){
  .topImage{
    position:absolute;
    top:100px;
    left:155px;
    width:31%;
  }
  .blank-mini {
      display: none;
      margin-left: -2em;
   }
   .go-left-second-logged{
    position: absolute;
    left:5em;
  }
  .or{
    display: block;
  }
  .modal-content .carousel-inner{
    font-size: 1rem;
  }
}

/*==========*/
/*PAGINATION*/
/*==========*/

.pbtn{
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pbtn:hover{
  text-decoration: none;
}



/*MOBILE*/

@media screen 
   and (max-width : 320px) {
   
   .blank-mini {
      display: none;
      margin-left: -2em;
   }
   .go-left-second-logged{
    position: absolute;
    left:5em;
  }
  .or{
    display: block;
  }


  .modal-content .carousel-inner{
    font-size: 1rem;
  }
}

@media screen 
   and (max-width : 480px) {

    .ninety{
      width:100%;
      border-radius: 0px;
    }
    
    .product{
      width:100%;
      border-radius: 0px;
    }

    .card-land-img{
      width: 100%!important;
    }

    .container-fluid
    {
      padding: 0 0;
    }

    #logo-bck img{
      width:230px;
      height: 55px;
    }
  }