/* Start point build up */
/* Copyright 2017 Dominik Krulak
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* -------------------------------- ABOUT --------------------------------------
 * Compiled to:      *
 * File name abbr.:  -
 * Description:      SASS variables that are imported in almost every CSS
 *                   stylesheet.
 * ---------------------------------------------------------------------------*/
/* Local default fonts */
/* Google fonts */
/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Theme */
/* Typography and iconography colors */
/* SPINNER */
/* ANIMATION */
/* SNACKBAR */
/* Copyright 2017 Dominik Krulak
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* -------------------------------- ABOUT --------------------------------------
 * Compiled to:      *
 * File name abbr.:  -
 * Description:      SASS mixins that are imported in almost every CSS
 *                   stylesheet.
 * ---------------------------------------------------------------------------*/
/* Dialog */
.iptHr {
  position: relative;
  margin: 2rem 0;
  z-index: 1;
}
.iptHr:first-child {
  margin-top: 0;
}
.iptHr label {
  display: block;
  margin: 0.3125rem 0;
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
}
@media only screen and (max-width: 480px) {
  .iptHr label {
    font-size: 0.694rem;
  }
}
.iptHr input:not([type=checkbox]):not([type=radio]), .iptHr textarea, .iptHr select {
  padding: 0.5rem;
  margin: 0;
  border: 1px solid #e2e2e4;
  border-radius: 3px;
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 1em;
  width: auto;
}
.iptHr input:not([type=checkbox]):not([type=radio]).iptGw, .iptHr textarea.iptGw, .iptHr select.iptGw {
  width: calc(100% - (0.625rem * 2));
}
.iptHr .msg {
  margin: 0;
  padding: 0.5rem 0;
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
  color: #5e5e5e;
}
@media only screen and (max-width: 480px) {
  .iptHr .msg {
    font-size: 0.694rem;
  }
}
.iptHr .errMsg {
  margin: 0;
  padding: 0.5rem 0;
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
  color: #ff3b30;
}
@media only screen and (max-width: 480px) {
  .iptHr .errMsg {
    font-size: 0.694rem;
  }
}

input[type=checkbox], input[type=radio] {
  cursor: pointer;
}
input[type=checkbox] + label, input[type=radio] + label {
  padding: 0.5rem 0 0;
  cursor: pointer;
}

.cBxHr {
  position: relative;
  padding: 0;
}
.cBxHr > input[type=checkbox], .cBxHr > input[type=radio] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  outline: none;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 1;
  cursor: pointer;
}
.cBxHr > input[type=checkbox]:hover ~ .cBxCt, .cBxHr > input[type=checkbox]:focus ~ .cBxCt, .cBxHr > input[type=radio]:hover ~ .cBxCt, .cBxHr > input[type=radio]:focus ~ .cBxCt {
  border-color: #1d1d1f;
}
.cBxHr > input[type=checkbox]:hover ~ .cBxCt.drk, .cBxHr > input[type=checkbox]:focus ~ .cBxCt.drk, .cBxHr > input[type=radio]:hover ~ .cBxCt.drk, .cBxHr > input[type=radio]:focus ~ .cBxCt.drk {
  border-color: #c6c6c6;
}
.cBxHr > input[type=checkbox]:checked ~ .cBxCt, .cBxHr > input[type=radio]:checked ~ .cBxCt {
  border-color: #1d1d1f;
  background-color: #ffffff;
}
.cBxHr > input[type=checkbox]:checked ~ .cBxCt.drk, .cBxHr > input[type=radio]:checked ~ .cBxCt.drk {
  border-color: #f68400;
}
.cBxHr > input[type=checkbox]:checked ~ .cBxCt .qtySct, .cBxHr > input[type=radio]:checked ~ .cBxCt .qtySct {
  position: relative;
  height: auto;
  opacity: 1;
  z-index: 1;
}
.cBxHr > input[type=checkbox]:checked ~ .cBxCt .qtySct *, .cBxHr > input[type=radio]:checked ~ .cBxCt .qtySct * {
  position: relative;
  opacity: 1;
}
.cBxHr > .cBxCt {
  position: relative;
  height: 100%;
  border: 1px solid #e2e2e4;
  border-radius: 3px;
  background-color: #ffffff;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
.cBxHr > .cBxCt.drk {
  border-color: #919191;
}
.cBxHr > .cBxCt > *:not(.cBxCtMore) h5 {
  margin: 0;
  font-weight: normal;
}
.cBxHr > .cBxCt > *:not(.cBxCtMore) p {
  margin: 0;
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
  line-height: 1.25;
  color: #919191;
}
@media only screen and (max-width: 480px) {
  .cBxHr > .cBxCt > *:not(.cBxCtMore) p {
    font-size: 0.694rem;
  }
}
.cBxHr > .cBxCt .qtySct {
  height: 0;
  opacity: 0;
  margin: 0;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  z-index: -1;
}
.cBxHr > .cBxCt .qtySct * {
  opacity: 0;
  position: absolute;
}
.cBxHr > .cBxCt .qtySct input:not([type=checkbox]):not([type=radio]), .cBxHr > .cBxCt .qtySct textarea, .cBxHr > .cBxCt .qtySct select {
  max-width: 115px;
}
.cBxHr .cBxBnMore {
  font-family: "Arial", "Georgia", "Helvetica", "Tahoma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: bold;
  z-index: 2;
}
@media only screen and (max-width: 480px) {
  .cBxHr .cBxBnMore {
    font-size: 0.694rem;
  }
}
.cBxHr .cBxBnMore:checked ~ .cBxCtMore {
  display: inherit;
  position: fixed;
  top: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.47);
}
.cBxHr .cBxCtMore {
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  z-index: -1;
  align-items: center;
  overflow: hidden;
}
.cBxHr .cBxCtMore > * {
  margin: 0.9375rem;
  text-align: left;
  overflow-y: auto;
  max-height: calc(100% - 1.875rem);
  border-radius: 3px;
  background-color: #ffffff;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
.cBxHr .cBxCtMore > * .cBxBnMore {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.showWwCbx:checked ~ .hideWw {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.showWwCbx:checked ~ .showWw {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.showWwCbx ~ .hideWw {
  opacity: 1;
  position: relative;
  z-index: 1;
}
.showWwCbx ~ .showWw {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
