body {
    color: #333333;
    font-family: arial;
    max-width: 100%;
    margin: 0 auto; /*first is top/bottom - second value is left and right */
    padding: 0 16px; /* padding is distance from browser in this case*/

    display: flex;
    flex-direction: column;
    min-height: 100vh; /* vh = viewport height    100 = full broswer height*/
}


#message-1 {
    visibility: hidden;
}

#cart-icon {
    width: 100px;
}

.card {
    z-index: 0;
    background-color: #ECEFF1;
    padding-bottom: 20px;
    margin-top: 30px;
    margin-bottom: 90px;
    border-radius: 10px
}

.top {
    padding-top: 40px;
    padding-left: 13% !important;
    padding-right: 13% !important
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #455A64;
    padding-left: 0px;
    margin-top: 30px
}

#progressbar li {
    list-style-type: none;
    font-size: 13px;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar .step0:before {
    font-family: FontAwesome;
    content: "\f10c";
    color: #fff
}

#progressbar li:before {
    width: 40px;
    height: 40px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    background: #C5CAE9;
    border-radius: 50%;
    margin: auto;
    padding: 0px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 12px;
    background: #C5CAE9;
    position: absolute;
    left: 0;
    top: 16px;
    z-index: -1
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -50%
}

#progressbar li:nth-child(2):after,
#progressbar li:nth-child(3):after,
#progressbar li:nth-child(4):after {
    left: -50%
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    left: 50%
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #651FFF
}

#progressbar li.active:before {
    font-family: FontAwesome;
    content: "\f00c"
}

.icon {
    width: 60px;
    height: 60px;
    margin-right: 15px
}

.icon-content {
    padding-bottom: 20px
}

@media screen and (max-width: 992px) {
    .icon-content {
        width: 50%
    }
}

footer {
    color: #888888;
    border-top: 1px solid #eeeeee;
    margin-top: 16px;
    padding: 16px 0;
}

h1 {
    font-size: 36px;
    margin-bottom: 16px;
    margin-top: 16px;
    text-align: center;
}

header a {             /* target just <a> tags in header div*/
    color: #888888;
    margin-right: 16px;
    text-decoration: none;;
}

.portrait {
    width: 550px;
}

.main-content {
    flex-grow: 1; /* main content fills whole page = 1 */
}

form {
    text-align: center;

}

input {
    border: 1px solid #cccccc;
    padding: 8px;
    width: 50%;
    height: 50px;
    font-size: 20px;
}

button {
    cursor: pointer;
    border: 1px solid #888888;
    background: #888888;
    color: white;
    padding: 8px;
}

table {
  font-family: arial, sans-serif;
  font-size: 10px;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 6px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.loader {
  border: 20px solid #f3f3f3;
  border-radius: 50%;
  border-top: 20px solid #00B67A;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

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

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


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
}

.nav{
    display: flex;
    justify-content: space-between;
}

.brand-logo{
    height: 60px;
}

.nav-items{
    display: flex;
    align-items: center;
}

.search{
    width: 500px;
    display: flex;
}

.search-box{
    width: 80%;
    height: 40px;
    padding: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 1px solid #d1d1d1;
    text-transform: capitalize;
    background: none;
    color: #a9a9a9;
    outline: none;
}

.search-btn{
    width: 20%;
    height: 40px;
    padding: 10px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #383838;
    color: #fff;
    text-transform: capitalize;
    font-size: 15px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.search-box::placeholder{
    color: #a9a9a9;
}

.nav-items a{
    margin-left: 20px;
}

.nav-items a img{
    width: 30px;
}

.links-container{
    width: 100%;
    display: flex;
    padding: 10px 10vw;
    justify-content: center;
    list-style: none;
    border-top: 1px solid #d1d1d1;
}

.link{
    text-transform: capitalize;
    padding: 0 10px;
    margin: 0 5px;
    text-decoration: none;
    color: #383838;
    opacity: 0.5;
    transition: .5s;
}

.link:hover{
    opacity: 1;
}

/*side nav */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #000032;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


.myButton {
    background-color:#00b679;
    border-radius:28px;
    display:inline-block;
    cursor:pointer;
    font-family:Arial;
    color: white;
    font-size:17px;
    padding:16px 31px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2b665e;
}
.myButton:hover {
    background-color:transparent;
    color: #111111;
}
.myButton:active {
    position:relative;
    top:1px;
}

.sidenav2 {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #000032;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav2 a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav2 a:hover {
  color: #f1f1f1;
}

.sidenav2 .closebtn2 {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main2 {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav2 {padding-top: 15px;}
  .sidenav2 a {font-size: 18px;}
}

#codebox {
  padding: 25px;
  font-family: Courier, sans-serif;
  font-size: 1em;
    line-height: 1.3;
  color: #fff;
  background-color: #2c3e50;
  -webkit-border-radius: 0px 0px 6px 6px;
  -moz-border-radius: 0px 0px 6px 6px;
  border-radius: 0px 0px 6px 6px;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

code {
    font-family: Courier, sans-serif;
  font-size: 1em;
    line-height: 1.3;
}

#JSONPayloadExample {
    font-size: 20px;
}

#encryptedPayload {
    width: 100%;
    overflow:  auto;
    display:  block;
}

#submit:hover {
    background-color: #00B67A;

}

#codebox-box {
    padding: 20px;
}


.codeheader {
  padding: 5px 5px 5px 25px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  color: #fff;
  width: 100%;
  -webkit-border-radius: 6px 6px 0px 0px;
  -moz-border-radius: 6px 6px 0px 0px;
  border-radius: 6px 6px 0px 0px;
    user-select: none;
    -ms-user-select: none; /* IE10+, Edge */
    -moz-user-select: none; /* Mozilla */
    -webkit-user-select: none; /* Safari */
}

#codeheader_html {
  background-color: #00B67A;
}
#codeheader_css {
  background-color: #e67e22;
}
#codeheader_php {
  background-color: #85144b;
}
#codeheader_js {
  background-color: #0074D9;
}

.tp-icon {
  position: fixed;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 20px;
  left: 20px;
  width: 265px;
}

.tp-icon-star {
  height: 30px;
  width: auto;
  border-radius: 50%;
}

.tp-icon-star:hover {
  cursor: pointer;
  opacity: 0.9;
}

.tp-popup {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  bottom: -100px;
  left: 45px;
  width: 450px;
  max-width: 70vw;
  margin-top: -8%;
  padding: 1rem 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 3px 5px 2px #ccc;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.tp-show {
  z-index: 10;
  visibility: visible;
  bottom: 70px;
  opacity: 1;
}

.trustpilot-widget > iframe {
  height: 70vh !important;
}

#inviteButton {
    padding: 10px;
}

#message-2 {
    display: none;
}

.dots-cont {<!--  w  ww .  ja  v  a  2  s  . c o  m-->
   position: absolute;
   right: 0px;
   bottom: 0px;
   display: none;
}
.dot {
   width: 12px;
   height: 12px;
   background: #d5d5d5;
   display: inline-block;
   border-radius: 50%;
   right: 0px;
   bottom: 0px;
   margin: 0px 2.5px;
   position: relative;
   animation: jump 1s infinite;
}
.dots-cont:hover > .dot {
   /* position: relative; */
   /* bottom: 0px; */
   animation: none;
}
.dots-cont .dot-1 {
   -webkit-animation-delay: 100ms;
   animation-delay: 100ms;
}
.dots-cont .dot-2 {
   -webkit-animation-delay: 200ms;
   animation-delay: 200ms;
}
.dots-cont .dot-3 {
   -webkit-animation-delay: 300ms;
   animation-delay: 300ms;
}
@keyframes jump {
   0%   {bottom: 0px;}
   20%  {bottom: 5px;}
   40%  {bottom: 0px;}
}

$yellow: #ffd300;
$blue: #17d3ff;
$pink: #ff4e91;

$duration: 1000;

@function randomNum($min, $max) {
  $rand: random();
  $randomNum: $min + floor($rand * (($max - $min) + 1));

  @return $randomNum;
}

.icon {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 32px;
  position: relative;
}

.confetti {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 16px;
  background: $yellow;
  top: 0;
  opacity: 0;
  
  @for $i from 1 through 13 {
    &:nth-child(#{$i}) {
      left: $i * 7%;
      transform: rotate(#{randomNum(-80, 80)}deg);
      animation: makeItRain $duration * 1ms infinite ease-out;
      animation-delay: #{randomNum(0, $duration * .5)}ms;
      animation-duration: #{randomNum($duration * .7, $duration * 1.2)}ms
    }
  }
  
  &:nth-child(odd) {
    background: $blue;
  }
  
  &:nth-child(even) {
    z-index: 1;
  }
  
  &:nth-child(4n) {
    width: 5px;
    height: 12px;
    animation-duration: $duration * 2ms;
  }
  
  &:nth-child(3n) {
    width: 3px;
    height: 10px;
    animation-duration: $duration * 2.5ms;
    animation-delay: $duration * 1ms;
  }
  
  &:nth-child(4n-7) {
    background: $pink;
  }
}

@keyframes makeItRain {
  from {
    opacity: 0;
  }
  
  50% {
    opacity: 1;
  }
  
  to {
    transform: translateY(200px);
  }
}