/**********************************************
    Global Variables
**********************************************/
/**********************************************
    Component Variables
**********************************************/
/**********************************************
    Component Styles
**********************************************/
.uiLibNotifyBox {
  position: fixed;
  z-index: 9999;
  background: transparent;
  overflow-y: hidden;
  bottom: 2em;
  right: 4em;
  padding: 10px;
  pointer-events: none;
}
.uiLibNotifyCard {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
  width: 400px;
  min-height: 60px;
  color: #000;
  background: #fff;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.uiLibNotifyCard + .uiLibNotifyCard {
  margin-top: 10px;
}
.uiNotifyClose {
  border: 0;
  padding: 0;
  margin-left: 15px;
  background: none;
  font-size: 1.5em;
  color: #333;
  pointer-events: auto;
}
.uiNotifyClose:focus {
  outline: none;
}
.uiNotifyClose:hover {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .uiLibNotifyBox {
    top: 0em;
    bottom: initial;
    right: 0em;
    width: 100%;
  }
  .uiLibNotifyCard {
    width: 100%;
  }
  .uiLibNotifyCard + .uiLibNotifyCard:not(:first-child) {
    margin-top: 1px;
  }
}
.uiPopoverLink {
  cursor: pointer;
  color: #d71920;
  text-decoration: underline;
  font-weight: bold;
}
.volumeBtnSetWrapper {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.volumeBtnSetWrapper input {
  cursor: context-menu;
  width: 50px;
  border: 0;
  padding: 0;
  outline: 0;
  box-shadow: none;
  font-size: 23px;
  text-align: center;
  height: 38px;
  color: #000;
  background-color: #f6f6f6;
}
.volumeBtnSetWrapper .volumeBtn {
  background: #d71920;
  color: #fff;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
}
.volumeBtnSetWrapper .volumeBtn:focus {
  outline: 3px solid #5e9ed6;
  outline-offset: -3px;
}
.volumeBtnSetWrapper .volumeBtn:hover {
  background: #921116;
  border-color: #921116;
}
.volumeBtnSetWrapper .volumeBtnItem-Add > .volumeBtn,
.volumeBtnSetWrapper .volumeBtnItem-Sub > .volumeBtn {
  font-size: 28px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  border: 0px;
  border-radius: 0px;
  width: 38px;
  height: 38px;
}
.volumeBtnSetWrapper .volumeBtnItem-Add > .volumeBtn > span,
.volumeBtnSetWrapper .volumeBtnItem-Sub > .volumeBtn > span {
  position: relative;
  bottom: 2px;
}
.volumeBtnSetWrapper .volumeBtnItem-Input {
  margin: 0px;
  flex: 3 1 auto;
  cursor: default;
}
@media only screen and (max-width: 768px) {
  .volumeBtnSetWrapper {
    width: 100%;
  }
  .volumeBtnSetWrapper input {
    height: calc(45.6px) !important;
  }
  .volumeBtnSetWrapper .volumeBtnItem-Add > .volumeBtn,
  .volumeBtnSetWrapper .volumeBtnItem-Sub > .volumeBtn {
    width: calc(45.6px) !important;
    height: calc(45.6px) !important;
  }
}
label .bigCheckboxWrapper {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 33px;
  vertical-align: middle;
}
label .bigCheckboxWrapper .bigCheckbox {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  border: 1px solid #666;
  border-radius: 3px;
}
label .bigCheckboxWrapper .bigCheckbox::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 10px;
  width: 10px;
  height: 18px;
  display: none;
  border: 3.5px solid #fff;
  border-left-width: 0;
  border-top-width: 0;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
label .bigCheckboxWrapper input {
  position: absolute;
  top: 40%;
  left: 40%;
}
label .bigCheckboxWrapper input:checked + .bigCheckbox {
  background-color: #666;
}
label .bigCheckboxWrapper input:checked + .bigCheckbox::after {
  display: block;
}
label .bigCheckboxWrapper input:focus + .bigCheckbox {
  border-width: 2px;
}
label .bigCheckboxWrapper.bigCheckboxType_radio .bigCheckbox {
  border-radius: 16.5px;
}
label .bigCheckboxWrapper.bigCheckboxType_radio .bigCheckbox::after {
  top: 6px;
  left: 6px;
  width: 17px;
  height: 17px;
  border-radius: 9px;
  border-width: 9px;
}
label.row {
  display: block;
  max-width: none;
  font-weight: normal;
}
div.logoContainer.pull-left {
  width: auto;
  margin-right: 10px;
}
