 @charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,900);
@import url(https://fonts.googleapis.com/css?family=Audiowide);

$lato: 'Lato', sans-serif;

//color
$yellow: #fee155; 
$white: #f2f1f1;
$black: #000000;
$black-light: #5E5E5E;

//font weights:
$thin: 300;
$normal: 400;
$bold: 900;


/*==================================== 
  Some styles to spruce up the demo
=====================================*/ 

body {
  background: $white;
  color: $black-light; 
  font-family: $lato;
  font-weight: $thin;
  text-shadow: ;
  text-align: center;
}



.wrap {
  padding: 0;
  text-align: center;
  @media (min-width: 700px) { padding: 1em 1em; }
}


/*==================================== 
  Our Modal Window styles
=====================================*/
.modal {
  background: $yellow;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 1em;
}
@media (min-width: 43.75em) {
  .modal {
    padding: 1.5em;
  }
}
.modal > label {
  background: #fee155;
  border: 0px solid ;
  border-radius:0;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 0;
  text-shadow: 1px 1px 1px #fff;
  transition: all 0.55s;
  width:40%;  
}
.modal > label:hover {
  transform: scale(0.97);
}
.modal__overlay {
  background:none;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  z-index: 600;
}
.modal__wrap {
  background:#fff;
  padding: 1em 0 ;
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  width: 90%;
  border: 2px solid black;
  box-shadow: 12px 12px 12px #666666 ;
}
@media (min-width: 50em) {
  .modal__wrap {
    padding: 1.75em;
  }
}
@media (min-height: 37.5em) {
  .modal__wrap {
    left: 50%;
    position: absolute;
    top: 70%;
    transform: translate(-50%, -80%);
  }
}
.modal__wrap label {
  background: none;
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  line-height: 1.5;
  position: absolute;
  alignment-adjust:central;  
  right: 2.0em;
  bottom: .5em;
  width: 1.5em;
}
.modal__wrap h2 {
  color: #fee155;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.modal__wrap p {
  color: #000000;
  text-align: justify;
}
.modal input:focus ~ label {
  transform: scale(0.97);
}

input {
  position: absolute;
  top: -1000px;
}

.modal__overlay {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -100;
}

input:checked ~ .modal__overlay {
  opacity: 1;
  transform: scale(1);
  z-index: 800;
}

.asprat{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 52%; 
}

.asprat1{
  position: relative;
  width: 95%;
  overflow: hidden;
  padding-top: 70%; 
}

.asprat2{
  position: relative;
  width: 90%;
  overflow: hidden;
  padding-top: 70%; 
}


.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

table {
  border-collapse: collapse;
}

.afsize { font-size:large;
}
