
.btnContainer {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  margin: 20%;
}

.btnContainer h2 {
  font-size: 2.2rem;
  padding: 15px;
  text-align: left;
  font-family: "Varela Round", sans-serif;
  color: #4a4e51;
  text-transform: uppercase;
}

.button {
  /* display: inline-block; */
  padding: 10px 14px;
  border: 0;
  border-radius: 5px;
  background: #378297;
  ;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.button i::after {
  content: "\f019";
  font-size: 24px;
  color: #fff;
}

.button:hover {
  -webkit-animation: pulse 0.2s 2 both;
  animation: pulse 0.2s 2 both;
}

.button.loading i {
  -webkit-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
}

.button.loading i::after {
  content: "\f1ce";
}

.button.success {
  border-radius: 50%;
  background: #80bca3;
}

.button.success i::after {
  content: "\f00c";
  color: transparent;
  -webkit-animation: change-icon 1s 0.6s linear both;
  animation: change-icon 1s 0.6s linear both;
}

@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}

@-webkit-keyframes change-icon {
  0% {
    color: transparent;
  }

  100% {
    color: #fff;
  }
}

@keyframes change-icon {
  0% {
    color: transparent;
  }

  100% {
    color: #fff;
  }
}

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}



@media screen and (max-height: 255px) {}

.view-collection {
  flex: 0 0 auto;
  margin: 10px 0 0;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

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

  .view-collection {
    margin: 25px auto
  }
}

.view-collection span {
  font-size: 13px;
}

.view-collection .love {
  color: #ff6060;
}

.view-collection a {
  color: #bf4d28;
  text-decoration: none;
  transition: all 0.7s;
}

.view-collection a:hover, .view-collection a:focus {
  color: #00ff80;
}