.fixed-card{
    height: 150px;
}

/* h1, h2, h3, h4, h5 {
    font-family: 'Courgette', cursive !important;
    color: red;
} */

#cartinfo h5, #cartinfo h6{
    display: inline;
}

table td tr{
    border:1px solid black;
    border-collapse:collapse;
}

.flexbox > div{

/*    width: 33%;*/

}

.flexbox{
    display: flex;
    justify-content:space-around;

}

.delete{
    color: gray;
    vertical-align: middle;
}

.delete:hover{
    color: red;
    transition: .5s;
    cursor: pointer;
}

.clearfix {
  overflow: auto;
  margin-top: 1em;
}

img:not(.logo){
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


.red{
    background-color: red !important;
    color: white !important;
}

.fixed-nav{
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    z-index: 10
}

.card-custom{
    -webkit-box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    padding: 2em;
    margin: 1em 4em 1em 4em;
}

.productImage{
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.label {
    width: 100px;
}

.button-container{
    position: relative;
}

.notStarted:after{
    content: "Send Email"
    
}

.pending::after{
  content: 'Loading';
  animation: spin 2s linear infinite;
}

.done:after{
    content: "Resend Email";
    width: 100%;
    height: 100%;
    
}

.emailView{
    text-align:center;
    position:absolute;
    top:80px;
    right:1vw;
    width:30vw;
    z-index:1000;
    display: none;
    background-color:#eea29a;
    border:2px solid gray;
    padding: 1em;
    overflow-y: scroll
}



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

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.round{
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: blue;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    margin: auto;
    
}

.round1{
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: blue;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    text-align: center;
    margin: auto;
    
}
.hidden {
    display: none;
}

.cart{
    position: fixed;
    top: 80px;
    right: 10px;
    width: 50%;
    max-height: 80%;
    z-index: 100 !important;
    display: none;
    text-align: center;
    -webkit-box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 39px -13px rgba(0,0,0,0.75);
    background-color: white;
    padding: 1em;
    overflow-y: scroll;
}

.cross{
    position: absolute;
    top: 10px;
    left: 10px;
    color: red;
    font-size: 1.3rem;
}

.cross:hover{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transition: .6s;
    cursor: pointer;
}

.small-screen{
    display: none;
}

#video-overlay-browser{
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    transition: .7s;
    object-fit: contain;
    background-color: rgba(0, 0, 0, .6)
}

#videoplayer {
    object-fit: cover;
}

.showvideo{
    opacity: 1 !important;
    transition: .7s
}

.big-screen{
    width: 300px;
    height: 300px;
}

@media only screen and (max-width: 800px) {
    .small-screen{
        display: block;
        margin-bottom: 1em;
    }
    
    .big-screen{
        display: none;
    }
    
    .cart{
        width: 90%;
        right: 5%;
        top: 110px;
    }
    
    img:not(.logo){
        position: relative;
        top: 0% !important;
        transform: translateY(0%);
    }
    
    #cartinfo h5{
        font-size: .6rem;
    }
    
    .navbar-brand{
        vertical-align: middle;
        font-size: .9rem !important;
    }
    
    #videoplayer {
    object-fit: scale-down;
    }
    
    .emailView{
        width: 90vw;
    }
    

}

@media only screen and (max-height: 600px) {

    
    .cart{
        height: 300px;
        width: 90%;
        right: 5%;
        overflow-y: scroll;
    }
    

    
    
}

@keyframes blink {
  50% {
    opacity: 0.6;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.6;
  }
}
.blink {
  animation: blink 4s ease-in 0s infinite;
  -webkit-animation: blink 4s ease-in 0s infinite;
}