* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%
}

#body-wrapper {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,ffffff+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(30,87,153,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(30,87,153,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(30,87,153,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#001e5799',GradientType=0 ); /* IE6-9 */
  width: 100%;
  height: 100%;
  position: absolute !important;
}

body {
  /*
  font-family: "Calibri", "Lucida Grande", Lucida Sans Unicode, Helvetica, Arial, Verdana, sans-serif; 
  font-family: 'Roboto', sans-serif;
  */
  font-family: "Roboto Condensed", Arial, sans-serif;
  /*font-weight: 500;*/
  /*background: #CAC9CF;*/
  color: #333;
  background-color: #011b2c;
  background-image: url(http://www.czechsecure.cz/wp-content/uploads/2016/11/background_optimized.jpg);
  background-attachment: fixed;
  background-position: center top;
  border-right: no-repeat;
  background-size: cover;
  color: white;
  /*height: 100%;*/
}
.wrapper {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}

h1 {
  margin: 20px 0;
  text-align: center;
  font-size: 1.5em;
}

hr.divide-line {
  border: 0;
    height: 1px;
    background: #989899;
}
hr.divide-gradient {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(14, 14, 14, 0), rgba(14, 14, 14, 0.75), rgba(14, 14, 14, 0));
    margin-bottom: 40px;
}
h1 div.apple {
  background: url('http://www.czechsecure.cz/wp-content/uploads/d/images/logo_apple.png') 0 0 no-repeat;
  width: 25px;
  height: 20px;
  background-size: 18px;
  display: inline-block;
}

.content {
  padding: 20px;
  font-size: 1em;
  text-align: center;
}

.content .confirmation {
  font-size: 1.2em;
}

.content .view-software {
  display: none;
  padding: 10px 20px;
  background-color: #0290DA;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.content .note {
  max-width: 520px;
  font-weight: 400;
  padding: 20px;
  margin: 20px auto;
  background-color: #BABABC;
  color: #717171;
  border-radius: 10px;
}
.platform-container {
    background-color: rgba(16, 16, 16, 0.75);
    padding: 5px;
    margin: 10px;
    /* *new overide */
    background-color: rgba(166, 173, 189, 0.57);
    padding: 5px 10px 45px;
    margin: 10px auto;
    max-width: 700px;
    box-shadow: 0 0 12px rgba(43, 67, 85, 0.07);
}
.platform-container label.header {
  display: block;
  color: #fff;
  padding: 20px 0;
  font-weight: 400;
  font-size: 26px;
  padding: 30px 0 10px;
}
.platform-container div.platform {
  width: 110px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center; 
  background-size: 80px;
  display: inline-block;
  cursor: pointer;
  margin: 10px;
}
.platform-container div.platform:hover {
  filter:drop-shadow(0px 0px 10px #000);
}
.platform-container div.platform.ios {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-appleios.png');
}
.platform-container div.platform.blackberry {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-blackberry.png');
}
.platform-container div.platform.symbian {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-symbian.png');
}
.platform-container div.platform.windows {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-windows.png');
}
.platform-container div.platform.android {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-android.png');
}
.platform-container div.platform.mac {
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/icon-macosx.png');
}


.white-mod {
    background-image: url(http://www.czechsecure.cz/wp-content/uploads/2016/11/background_optimized_white.jpg);
    background-position: top center;
    background-attachment: fixed;
    color: #777;
}

.header-white {
color: #2d4884 !important
}


/* Check box */
.squared-checkbox {
  position: relative;
  display: inline-block;
  top: -3px;
}
.squared-checkbox label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
}
.squared-checkbox label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #333;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  transform: rotate(-45deg);
}
.squared-checkbox label:hover::after {
  opacity: 0.3;
}
.squared-checkbox input[type=checkbox] {
  visibility: hidden;
}
.squared-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.header-img {
  /*
  height: 100px;
  background-image: url('http://www.czechsecure.cz/wp-content/uploads/d/images/topspy.png');
  background-repeat: no-repeat;
  background-position: center; 
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
*/
/*
height: 100px;
    background-image: url(http://www.czechsecure.cz/wp-content/uploads/d/images/topspy.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 50px;
    background-size: contain;
    margin: 0 10%;
    width: 80%;
*/
    height: 100px;
    background-image: url(http://www.czechsecure.cz/wp-content/uploads/d/images/topspy.png);
    background-repeat: no-repeat;
    background-position: center center;
    /* position: absolute; */
    /* bottom: 50px; */
    background-size: contain;
    margin: 0 10%;
    width: 80%;
}
input {
  font-size: 20px;
  width: 230px;
  text-align: center;
  margin: 20px auto;
  background-color: #000c15;
  border: 1px solid gray;
  font-weight: 600;
  text-decoration: none;
  display: block;
  color: #fff;
  background-color: #2b4355;
  padding: 15px 0;
}
input:hover, input:focus {
    background-color: #3e5f77;
    box-shadow: 0 0 12px rgba(12, 18, 23, 0.23) inset;
    text-shadow: 0 0 25px rgba(255,255,255,0.4);
    outline: black;
}
input[type="submit"]:hover {
  box-shadow: 0 0 12px rgba(12, 18, 23, 0.23);
}
a {
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

a.btn {
  margin: 40px auto 0;
  display: block;
  /*margin: 40px auto 0;*/ /*fixxxxxx*/
  color: #fff;
  background-color: #2b4355;
  padding: 15px;
  width: 80px;
/** cool mod :*/
  /*border-top-left-radius: 100%; */
  /* border-bottom-left-radius: 100%; */
  /* border-top-width: 211px; */
  /* border-top-color: #fff; */
  /* border-top-style: outset; */
  /* text-indent: 22px; */
  font-weight: 600;
  text-decoration: none;
  display: block;
  /*margin: 40px auto 0;*/
  color: #fff;
  background-color: #2b4355;
  padding: 15px;
  width: 130px;
}

a.inline-link {
    /* width: 110px; */
    /* float: left; */
    padding: 10px 0px;  
    display: inline-block;
    background-color: rgba(236, 239, 241, 0.77);
    transition: all .5s ease; 
    transition-delay: 0.3s;
    position: relative;
    color: #fff;
}

a.inline-link:hover {
  background-color: #3e5f77;
  -webkit-transform: rotateY(180deg);
}

a.inline-link .platform-desc {
  opacity: 0;
    position: absolute;
    top: 0;
    height: 100%;
    vertical-align: middle;
    display: flex;
    width: 100%;
    left: 0;
    line-height: 100%;
    justify-content: center;
    flex-direction: column;
    -webkit-transform: rotateY(180deg);
    transition: opacity .3s ease; 
    transition-delay: 0.3s;
  
}

a.inline-link .platform-desc .fa {
  margin-top: 10px;
  font-size: 30px;
}

a.inline-link .platform {
  transition: opacity .3s ease; 
  transition-delay: 0.3s;
}

a.inline-link:hover .platform {
  opacity: 0
}

a.inline-link:hover .platform-desc {
  opacity: 1
}

a:hover {
    text-shadow: 0 0 25px rgba(255,255,255,0.4);
}

a.btn:hover {
  background-color: #3e5f77;
  box-shadow: 0 0 12px rgba(12, 18, 23, 0.23);
}

span.header {
    font-size: 4vw; /*3.3em;*/
    text-transform: uppercase;
}

span.header-spy {
    color: #4a6193;
}

span.header-top {
    color: #eceff1;
}

img {
    margin: 30px 0px 10px;
  max-width: 100%;
}

p {
    margin-bottom: 25px;
    margin-top: 5px;
}






/*------------------------------------*/
.wp-content {
  text-align: left;
  padding: 0px 30px;
}

h1, h2, h3, h4, h5 {
    /*margin: 10px 0;*/
    margin: 40px 0;
}

ul, li, ol {
  margin-bottom: 10px;
  margin-left: 10px;
  margin-top: 10px; 
}

.entry blockquote {
    position: relative;
    color: #777;
    margin: 0 0 20px;
    padding-left: 50px;
}

.entry blockquote, address, cite, em {
    font-style: italic;
}
blockquote, q {
    quotes: none;
}

img.aligncenter {
    display: block;
    margin: 30px auto;
}

/* ANDROID IMAGES */
.post-222 img.aligncenter {
   max-width: 300px;
}

