.dialogShader {width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; background-color: #000; opacity: 0.4; z-index: 99;}
.dialogCont {width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 101;}
.dialogCont .centerer {width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-around;}
.dialogCont .dialogFrame {width: 600px; float: left; background-color: #FFF; border-radius: 5px; position: relative;}
.dialogCont .dialogFrame.size-1 {width: 800px;}
.dialogCont .dialogFrame.size-2 {width: 1000px;}
.dialogCont .headerFrame {width: 100%; min-height: 60px; padding: 10px 20px; float: left; background-color: #e5e5e5; border-bottom: 1px #d5d5d5 solid; color: #222; font-size: 20px; font-weight: 500; text-transform: uppercase; text-align: center; display: flex; align-items: center; position: relative;}
.dialogCont .headerFrame.red {background-color: #cc202d; border-bottom: 1px #cc202d solid;}
.dialogCont .headerFrame .close {width: auto; height: auto; float left; position: absolute; color: #222; font-size: 40px; top: calc(50% - 10px); right: 10px; line-height: 20px; opacity: 0.7;}
.dialogCont .headerFrame .close:HOVER {opacity: 1;}
.dialogCont .bodyFrame {width: 100%; padding: 30px; float: left; background-color: #FFF; font-size: 14px; font-weight: 300;}
.dialogCont .bodyFrame P:first-child {margin-top: 0px;}
.dialogCont .scroller {width: 100%; max-height: 70vh; float: left; overflow-y: scroll;}
.dialogCont .dialogFrame .buttonsFrame {width: 100%; float: left; display: flex; justify-content: space-between; margin: 10px 0px 0px 0px;}
.dialogCont .dialogFrame .buttonsFrame A {width: 160px; padding: 10px 20px; border: 1px #e0e0e0 solid; background-color: #f5f5f5; transition: box-shadow 200ms; font-size: 13px; font-weight: 300; display: flex; align-items: center; justify-content: space-around; text-decoration: none; border-radius: 2px;}
.dialogCont .dialogFrame .buttonsFrame A:HOVER {box-shadow: inset 0 0 10px rgba(0,0,0, 0.3);}
.dialogCont .dialogFrame .buttonsFrame A.cart {background-color: #ed2d5b; color: #FFF; border: 1px #ed2d5b solid;}
.dialogCont .dialogFrame .buttonsFrame A IMG {margin-right: 10px;}
.dialogCont .dialogFrame .buttonsFrame A.green {background-color: #1da676; color: #FFF; border-color: #1da676;}

.dialogCont .dialogFrame .close {width: auto; height: auto; float left; position: absolute; color: #FFF; font-size: 40px; top: -30px; right: 0px; line-height: 20px; opacity: 0.7;}
.dialogCont .dialogFrame .close:HOVER {opacity: 1;}

@media only screen
and (max-width: 1000px)
{
  .dialogCont .dialogFrame {max-width: 90vw;}
}
@media only screen
and (max-width: 700px)
{
  .dialogCont .headerFrame {font-size: 16px;}
}
@media only screen
and (max-width: 500px)
{
  .dialogCont .bodyFrame {padding: 10px;}
  
  .dialogCont .dialogFrame {margin-bottom: 80px; overflow-y: auto;}
  .dialogCont .dialogFrame .close {z-index: 99999999; top: 17px; color: #000; right: 10px;}  
}

/* Tlačítka v Dialogu */
/*
.dialogButtonsFrame {width: 100%; float: left; display: flex; justify-content: space-between; margin: 20px 0px 0px 0px;}
.dialogButtonsFrame .button {width: 350px; height: 60px; padding: 0px 20px; background-color: #79db31; color: #FFF; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; transition: 200ms all; border-radius: 5px;}
.dialogButtonsFrame .button.forward {}
.dialogButtonsFrame .button.forward:after {width: 17px; height: 28px; content: ''; background-image: url('/images/arrow-white-r.png'); background-position: center center; background-repeat: no-repeat;}
.dialogButtonsFrame .button.forward:HOVER {background-color: #000; color: #FFF;}
.dialogButtonsFrame .button.forward:HOVER:after {}
.dialogButtonsFrame .button.back {background-color: #eee; color: #222; cursor: pointer; justify-content: space-between;}
.dialogButtonsFrame .button.back:before {width: 17px; height: 28px; content: ''; background-image: url('/images/arrow-black-l.png'); background-position: center center; background-repeat: no-repeat;}


.cookiesLine {width: 100%; display: flex; flex-direction: column;}
.cookiesLine .cookiesHeaderLine {width: 100%; display: flex; align-items: center;}
.cookiesLine .cookiesHeaderLine INPUT {margin: 0px 15px 0px 0px; transform: scale(1.5);}
.cookiesLine .cookiesHeaderLine .heading {font-size: 16px; font-weight: 600;}*/