/*#region main variables*/
.clear {
  clear: both;
  content: '';
  display: table;
}
/*#endregion main variables*/
html {
  height: 100%;
  min-height: 100%;
}
body {
  font-family: 'Noto Sans', sans-serif;
  background-color: white;
  background-size: cover;
  color: #21222a !important;
  font-size: 14px;
  height: auto;
  height: 100%;
  line-height: 1.42857143;
  min-height: 100%;
}
.containerBox {
  padding: 70px 15px 15px;
}
img {
  width: auto;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #e6000f;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #337ab7;
}
.topBar {
  z-index: 3;
  color: #fff;
  padding: 0px 15px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  -webkit-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  -khtml-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  -moz-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  -ie-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  -o-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  -ms-box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  box-shadow: 0 0 20px 0 rgba(82, 63, 105, 0.1) !important;
  background-image: url(img/light_header.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 767px) {
  .topBar {
    padding: 0px;
  }
}
@media (max-width: 576px) {
  .topBar .col-sm-5 {
    width: 60%;
  }
  .topBar .col-sm-7 {
    width: 40%;
  }
}
.topBar:before {
  background: white;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0px;
  width: 50px;
  display: block;
  left: 0;
}
@media (max-width: 767px) {
  .topBar:before {
    display: none;
  }
}
.topBar img {
  max-height: 55px;
}
.topBar .brandLogo {
  padding: 8px 0 7px;
  background: white;
  height: 70px;
  background-image: url(img/stopanska-komora-logo.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 90%;
}
.topBar .brandLogo img {
  display: none;
}
@media (max-width: 767px) {
  .topBar .brandLogo {
    background-color: transparent;
    padding: 20px 0;
    margin: 0;
  }
  .topBar .brandLogo img {
    max-width: 170px;
  }
}
.topBar .user {
  padding: 17px;
}
.topBar .user .mat-button-wrapper {
  color: #21222a;
  font-weight: normal;
}
.searchCard {
  padding: 50px 60px 100px 35px;
  background: transparent;
  position: fixed;
  border-right: 1px solid #e5e5e5;
  width: 23%;
  z-index: 2;
}
@media (max-width: 1480px) {
  .searchCard {
    width: 22.5%;
  }
}
@media (max-width: 1380px) {
  .searchCard {
    width: 22%;
  }
}
@media (max-width: 1199px) {
  .searchCard {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .searchCard {
    width: 37%;
  }
}
@media (max-width: 767px) {
  .searchCard {
    width: 100%;
    position: relative;
    border-right: none;
    z-index: 2;
    background: #fafafa;
    margin: 0 -30px;
    width: auto;
    padding: 15px 40px;
  }
}
.searchCard > .mat-button.mat-basic {
  position: absolute;
  right: 45px;
  z-index: 1;
  min-width: 40px;
  padding: 0;
  line-height: 30px;
  top: 55px;
}
@media (max-width: 767px) {
  .searchCard > .mat-button.mat-basic {
    right: 25px;
    top: 20px;
  }
}
.searchCard .mat-select-arrow-wrapper {
  padding-right: 10px;
}
.searchCard .mat-button.mat-basic {
  min-width: 40px;
  padding: 0;
  line-height: 30px;
}
.mat-form-field {
  width: 100%;
}
.mat-tab-body {
  animation: fade-out 0.5s;
  opacity: 0;
  position: relative;
}
.mat-tab-body:before {
  position: absolute;
  top: 30px;
  left: 0;
  width: 5px;
  background: #8b9bb7;
  height: 40px;
  content: '';
}
.mat-tab-body.mat-tab-body-active {
  animation: fade-in 0.5s;
  opacity: 1;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.catImg {
  position: fixed;
  bottom: 0;
  left: 0;
  max-width: 30%;
  height: 340px;
  width: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media (max-height: 800px) {
  .catImg {
    opacity: 0.2;
  }
}
.catImg img {
  opacity: 0;
  max-width: 100%;
}
.catImg.imageFirst,
.catImg.imageThird {
  background-image: url(img/skm1.png);
  background-size: 90%;
}
.catImg.imageSecond {
  background-image: url(img/skm1.png);
  background-size: 90%;
}
.catImg.imageSecond {
  background-image: url(img/skm1.png);
  background-size: 90%;
}
@media (max-width: 767px) {
  .catImg {
    opacity: 0.08;
    max-width: 90%;
    z-index: -1;
  }
}
.mat-tab-body-wrapper {
  position: relative;
  z-index: 1;
}
.mat-tab-group {
  padding: 50px 0;
}
.mat-tab-group .mat-tab-header {
  border-bottom: 0px none transparent;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.mat-tab-group .mat-tab-label {
  font-size: 15px;
  font-weight: 400;
  color: #21222a !important;
  opacity: 0.4 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mat-tab-group .mat-tab-label.mat-tab-label-active {
  font-size: 18px;
  color: black !important;
  opacity: 1 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mat-tab-group.mat-primary .mat-ink-bar {
  background-color: transparent;
}
.mat-tab-body-content {
  padding: 30px;
}
@media (max-width: 767px) {
  .mat-tab-body-content {
    padding: 10px;
  }
}
.mat-tab-body-wrapper {
  margin: 0 -40px;
}
.itemBox {
  border: 1px solid #eaeaea;
  padding: 35px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ie-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 30px;
  min-height: 295px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: white;
  cursor: pointer;
}
.itemBox a {
  color: #21222a;
}
.itemBox a p {
  color: rgba(33, 34, 42, 0.6);
}
.itemBox a img {
  max-width: 30px;
}
.itemBox:hover {
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -khtml-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -moz-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -ie-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -o-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -ms-box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  box-shadow: 0 0 50px rgba(33, 34, 42, 0.08);
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.itemBox .visualIndicator {
  display: block;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ie-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  margin: 0 5px 30px;
}
.itemBox h3 {
  line-height: 21px;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 15%;
}
.itemBox p {
  overflow: hidden;
  max-height: 65px;
  text-overflow: ellipsis;
  position: relative;
  padding-right: 15%;
}
.itemBox p:after {
  position: absolute;
  content: "...";
  bottom: 0;
  right: 0;
}
.itemBox .actionBox {
  border-top: 1px solid #eaeaea;
  position: absolute;
  bottom: 0;
  left: 35px;
  right: 35px;
  padding: 15px 0 20px;
  height: 65px;
}
.itemBox .actionBox .col-xs-6 {
  padding: 0px;
}
.count {
  position: relative;
  z-index: 1;
}
.count:nth-of-type(1n+1) .itemBox .visualIndicator {
  background: #ffe600;
  -webkit-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  -khtml-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  -moz-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  -ie-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  -o-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  -ms-box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
  box-shadow: 0px 0px 0px 7px rgba(255, 230, 0, 0.2);
}
.count:nth-of-type(2n+2) .itemBox .visualIndicator {
  background: #de4a4a;
  -webkit-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  -khtml-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  -moz-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  -ie-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  -o-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  -ms-box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
  box-shadow: 0px 0px 0px 7px rgba(222, 74, 74, 0.2);
}
.count:nth-of-type(3n+3) .itemBox .visualIndicator {
  background: #a1e6ac;
  -webkit-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  -khtml-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  -moz-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  -ie-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  -o-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  -ms-box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
  box-shadow: 0px 0px 0px 7px rgba(161, 230, 172, 0.2);
}
.count:nth-of-type(4n+4) .itemBox .visualIndicator {
  background: #b5bdcc;
  -webkit-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  -khtml-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  -moz-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  -ie-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  -o-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  -ms-box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
  box-shadow: 0px 0px 0px 7px rgba(181, 189, 204, 0.2);
}
.count:nth-of-type(5n+5) .itemBox .visualIndicator {
  background: #8b9bb7;
  -webkit-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  -khtml-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  -moz-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  -ie-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  -o-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  -ms-box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
  box-shadow: 0px 0px 0px 7px rgba(139, 155, 183, 0.2);
}
.mat-primary .mat-pseudo-checkbox-checked,
.mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #de4a4a;
}
.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #de4a4a;
}
.mat-form-field.mat-focused .mat-form-field-ripple {
  background: #de4a4a;
}
.mat-form-field.mat-focused .mat-form-field-label {
  color: #de4a4a;
}
@media (min-width: 768px) {
  .hidden-xs {
    display: block;
  }
  .visible-xs {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block;
  }
  .userDetails .mat-focus-indicator.mat-button {
    margin-right: -20px;
  }
}
@media (max-width: 767px) {
  .mt100 {
    padding-bottom: 100px;
  }
}
.mt100 h1 {
  font-size: 28px;
  line-height: 32px;
  margin: 30px 0 50px;
}
.mt100 h1:after {
  background-color: #de4a4a;
  content: " ";
  display: block;
  height: 3px;
  width: 85px;
  margin-top: 15px;
  margin-left: 2px;
}
.mt100 h2 {
  font-size: 22px;
  line-height: 24px;
  margin-top: 50px;
}
.mt100 h3 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 50px;
  border-top: 1px solid #eaeaea;
  padding-top: 30px;
}
.mt100 p {
  margin: 15px 0;
  font-size: 15px;
}
.mt100 ul {
  list-style: none;
  margin: 15px 0;
}
.mt100 ul li {
  margin-bottom: 10px;
  line-height: 21px;
}
.mt100 ul li:before {
  border: 1px solid #de4a4a;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-left: -20px;
  margin-right: 15px;
}
.mt100 a {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  position: relative;
  color: #de4a4a;
}
.mt100 a:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -1px;
  height: 1px;
  background: #de4a4a;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 0%;
}
.mt100 a:hover {
  color: #de4a4a;
}
.mt100 a:hover:after {
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
.mt100 .goBack {
  padding: 30px;
  letter-spacing: 0.5px;
}
.btn-apply {
  -webkit-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -khtml-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -moz-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -ie-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -o-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -ms-box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  box-shadow: rgba(69, 65, 78, 0.15) 0 1px 25px 0px;
  -webkit-border-radius: 50px !important;
  -khtml-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -ie-border-radius: 50px !important;
  -o-border-radius: 50px !important;
  -ms-border-radius: 50px !important;
  border-radius: 50px !important;
  text-align: center;
  padding: 7px 30px !important;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: #324b75;
  color: white !important;
}
@media (max-width: 768px) {
  .btn-apply {
    padding: 5px 20px !important;
  }
}
.btn-apply svg {
  transform: scale(1.1, 1.1);
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 5px;
}
.btn-apply svg path {
  fill: white;
}
.btn-apply span {
  font-size: 16px;
}
.btn-apply:hover {
  background: white !important;
  color: #21222a !important;
}
.btn-apply:hover svg {
  transform: scale(1.3, 1.3);
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-apply:hover svg path {
  fill: #324b75;
}
.btn-apply:hover .mat-button-focus-overlay {
  background: white;
}
.mat-list-item-content {
  font-size: 15px;
}
.mat-list-item-content svg {
  width: 22px !important;
  margin-right: 10px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
}
.mat-list-item-content svg path {
  fill: #de4a4a;
}
.breadcrumb {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .category {
  display: inline-block !important;
  width: auto !important;
}
.breadcrumb .category .mat-list-item-content {
  font-size: 13px;
  padding-right: 0px !important;
  letter-spacing: 0.5px;
  font-weight: 300;
  color: #de4a4a;
}
.breadcrumb .category .mat-list-item-content:after {
  content: "|";
  margin-left: 10px;
}
.breadcrumb .category:not(:first-of-type) .mat-list-item-content {
  padding-left: 8px;
}
.breadcrumb .category.catItem .mat-list-item-content {
  color: #a7acb1;
}
.breadcrumb .category.catItem .mat-list-item-content:after {
  content: "";
}
.prodImage {
  padding: 30px;
  text-align: center;
  max-width: 230px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .mt100 .searchCard {
    background: #de4a4a;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .mt100 .searchCard a {
    color: white;
  }
}
footer {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
@media (max-width: 767px) {
  footer {
    z-index: 0;
  }
}
footer a {
  display: block;
}
footer a img {
  max-width: 135px;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
footer a:hover img {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -khtml-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ie-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ie-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}
scrollbar {
  -moz-appearance: none !important;
}
scrollbarbutton {
  -moz-appearance: none !important;
}
thumb {
  -moz-appearance: none !important;
}
scrollcorner {
  -moz-appearance: none !important;
  resize: both;
}
scrollbar[orient="vertical"] {
  color: silver;
}
app-language .mat-button-toggle-checked {
  background-color: transparent;
}
app-language .mat-button-toggle-checked .mat-button-toggle-label-content {
  color: #de4a4a;
}
app-language .mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 36px;
  padding: 0 5px;
}
app-language .mat-button-toggle-group-appearance-standard .mat-button-toggle {
  border-left: solid 0px rgba(0, 0, 0, 0.12);
  background-color: transparent;
}
app-language .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 0px rgba(0, 0, 0, 0.12);
  background-color: transparent;
}
app-language .mat-button-toggle-group-appearance-standard {
  border-radius: 0px;
  border: none;
}
.mat-card-title {
  font-size: 19px;
}
.noResults {
  text-align: center;
  padding: 100px 30px;
}
@media (max-width: 767px) {
  .noResults {
    padding: 0px;
  }
}
.noResults h3 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.6;
  text-transform: uppercase;
}
.noResults svg {
  width: 90px;
  height: 90px;
  opacity: 0.1;
  margin-bottom: 10px;
}
.contentPage svg {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
  opacity: 0.1;
}
.contentPage .infopage {
  padding: 100px 0;
}
.contentPage .infopage h3 {
  margin-top: 50px;
}
.contentPage ul {
  list-style: circle;
}
.loginModal .mat-primary {
  background: #de4a4a;
}
.loginModal .mat-primary:hover {
  background: #324b75;
}
body {
  min-height: 100vh;
}
body app-root {
  position: relative;
  min-height: calc(100vh - 85px);
  padding-bottom: 100px;
  display: block;
}
body footer {
  position: absolute;
  right: 0;
  bottom: 10px;
}
@media (max-width: 767px) {
  .mat-list-base .mat-list-item,
  .mat-list-base .mat-list-option {
    height: auto !important;
    margin-bottom: 15px;
  }
  .mat-list-base .mat-list-item .mat-list-item-content,
  .mat-list-base .mat-list-option .mat-list-item-content {
    align-items: end;
  }
}
.pl30 {
    padding-left: 30px;
}

.terms-card-img {
    float: right;
    width: 220px;
    margin-top: -100px;
    margin-right: 50px;
}

.mt10 {
    margin-top: 10px;
}

.ml20 {
    margin-left: 20px;
}

.terms-extra-text {
    padding-top: 55px;
}