#cookieSimpleShader {font-family: arial, sans-serif; font-size: 13px; color: #222; width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; display: flex; align-items: center; justify-content: center; background-color: rgba(0,0,0,0.4); z-index: 999;}

/* Loader */
.cookieSimpleLoader {width: auto; height: auto; color: #FFF;}

/* Dialog */
.cookieSimpleDialog {position: relative; z-index: 999999999999999; width: 600px; height: auto; float: left; background-color: #FFF; border-radius: 5px; overflow: hidden;}

/* Hlavička */
.cookieSimpleDialog .cookieSimpleDialogHeader {width: 100%; min-height: 80px; padding: 10px 20px; border-bottom: 1px #eee solid; display: flex; justify-content: space-between; align-items: center; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; }
.cookieSimpleDialog .cookieSimpleDialogHeader .left IMG {max-width: 80px; max-height: 80px;}
.cookieSimpleDialog .cookieSimpleDialogHeader .right P {font-size: 18px; font-weight: 600; margin: 0px;}

/* Menu */
.cookieSimpleDialog .cookieSimpleDialogMenu {width: 100%; height: 60px; display: flex; background-color: #f7f7f7; border-bottom: 1px #eee solid;}
.cookieSimpleDialog .cookieSimpleDialogMenu .button {flex: 1; padding-top: 3px; display: flex; font-size: 15px; font-weight: 600; border-bottom: 3px transparent solid; align-items: center; justify-content: center; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; cursor: pointer;}
.cookieSimpleDialog .cookieSimpleDialogMenu .button.active {border-color: #f07d00;}

/* Body */
.cookieSimpleDialog .cookieSimpleDialogBody {width: 100%; min-height: 80px;}
.cookieSimpleDialog .cookieSimpleDialogBody .content {width: 100%; min-height: 10vh; max-height: 50vh; float: left; display: none; overflow-y: scroll;}
.cookieSimpleDialog .cookieSimpleDialogBody .content.active {display: block;}
.cookieSimpleDialog .cookieSimpleDialogBody .inner {width: 100%; float: left; padding: 10px 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;}

/* Tlačítka */
.cookieSimpleButtonsFrame {width: 100%; padding: 0px 20px; float: left; background-color: #f7f7f7; border-top: 1px #eee solid; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box;}
.cookieSimpleButtonsFrame .content {width: 100%; height: 70px; display: none; align-items: center; justify-content: flex-end;}
.cookieSimpleButtonsFrame .content.active {display: flex;}
.cookieSimpleButtonsFrame .button {width: 150px; height: 40px; border: 2px #ccc solid; background-color: #FFF; margin: 0px 0px 0px 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; cursor: pointer;}
.cookieSimpleButtonsFrame .button.green {border-color: #87c91e; background-color: #87c91e; color: #FFF !important;}

/* Formátování textů */
.cookieSimpleTextFrame {line-height: 1.4;}
.cookieSimpleTextFrame P {font-weight: 300; margin: 20px 0px;}
.cookieSimpleTextFrame B {font-weight: 600;}

/* Řádek s přepínačem - Switch Line */
.cookieSimpleSwitchLine {width: 100%; padding: 20px 0px; float: left; display: flex; border-bottom: 1px #eee solid;}
.cookieSimpleSwitchLine:last-child {border-bottom: 0px;}
.cookieSimpleSwitchLine .left {width: calc(100% - 100px);}
.cookieSimpleSwitchLine .left .heading {font-size: 14px; font-weight: 600; margin: 0px;}
.cookieSimpleSwitchLine .left .text {font-size: 13px; font-weight: 300; margin: 10px 0px 0px 0px;}
.cookieSimpleSwitchLine .right {width: 100px; display: flex; justify-content: flex-end;}

/* Switch */
.cookieSimpleSwitch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookieSimpleSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookieSimpleSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  -webkit-transition: .4s;
  transition: .4s;
}

.cookieSimpleSlider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.cookieSimpleSwitch input:checked + .cookieSimpleSlider {
  background-color: #87c91e;
}

.cookieSimpleSwitch input:checked + .cookieSimpleSlider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.cookieSimpleSwitch .cookieSimpleSlider.round {
  border-radius: 34px;
}

.cookieSimpleSwitch .cookieSimpleSlider.round:before {
  border-radius: 50%;
}

.cookieSimpleSwitch input.required:checked + .cookieSimpleSlider {
  background-color: #ccc;
}
