﻿#app {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

.left-side {
  align-items: center;
  background: url('/content/images/background.png') no-repeat no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  width: 50%;
  font-size: 1.2rem;
}

.right-side {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  padding: 1rem;
  width: 50%;
}

.left-side-container {
  background: rgba(0, 0, 0, .5);
  padding: 1rem;
}

.category-description-container {
  background-color: #5b3564;
  color: #fff;
}

.btn-purple {
  background-color: #5b3564 !important;
  border: 1px solid #5b3564;
}

  .btn-purple:hover, .btn-purple:active, .btn-purple:disabled {
    border-color: #5b3564 !important;
  }

[v-cloak] {
  display: none;
}

@media (max-width: 575.98px) {
  #app {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .left-side,.right-side {
    width: auto;
  }
}