/* [Object] Modal
 * =============================== */
 .modal-pop {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
    background: rgba(0,0,0, .8);
    transition: opacity .25s ease;
  }
  
  
  .modal__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
  }
  
  input.modal-state {
    display: none !important;
  }
  
  .modal-state:checked + .modal-pop {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-state:checked + .modal-pop .modal__inner {
    top: 0;
  }
  
  .modal__inner {
    transition: top .25s ease;
    position: absolute;
    top: -20%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 95%;
    max-width:700px;
    margin: auto;
    overflow: auto;
    background-image: url("/images/membertourn_bg.jpg");
    border-radius: 5px;
    height: 72%;
  }

  .modal__header{
    width: 100%;
    background: #33414a;
    color: #fff;
    padding: 7px 25px;
    font-size: 14px;
    border-bottom:1px solid silver;
  }
  
  .modal__close {
    position: absolute;
    right: .7em;
    top: .8em;
    width: 1em;
    height: 1em;
    cursor: pointer;
  }
  
  .modal__close:after,
  .modal__close:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 1em;
    background: #ccc;
    display: block;
    transform: rotate(45deg);
    left: 50%;
    margin: -3px 0 0 -1px;
    top: 0;
  }
  
  .modal__close:hover:after,
  .modal__close:hover:before {
    background: #aaa;
  }
  
  .modal__close:before {
    transform: rotate(-45deg);
  }
  
  @media screen and (max-width: 768px) {
      
    .modal__inner {
      width: 90%;
      height: 90%;
      box-sizing: border-box;
    }
  }
  
  
  /* Other
   * =============================== */

  .btn-pop {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .1rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: #f65f00;
    border-radius: 4px;
    border: 2px solid #bbb;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 10px;
  }
  
  .btn-pop:hover,
  .btn-pop:focus {
    background: silver;
  }
  
  .btn-pop:active {
    background: silver;
    box-shadow: 0 1px 2px rgba(0,0,0, .2) inset;
  }

.membtourn-title{
  color: #fff;
  text-align:center;
  max-width: 80%;
  font-weight: 800;
  text-shadow: 2px 2px 0px #000;
  margin: 30px auto 30px auto;
  letter-spacing: 1px;
  font-size: 4.0rem;
}

.memtourn-info{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.memtourn-info .memtourn-infobox{
  width: 30%;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #fff;
  box-shadow: 2px 2px 3px rgba(0,0,0,.3);
  border-radius: 10px;
}

.memtourn-infobox .ib-icon{
  float:left;
  width: 40%;
  height:100%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #1d3762;
}

/*.memtourn-infobox.ib-date .ib-icon{
  background: #2196f3;
}

.memtourn-infobox.ib-ages .ib-icon{
  background: #ef5350;
}

.memtourn-infobox.ib-price .ib-icon{
  background: #4caf50;
}*/

.memtourn-infobox .ib-icon .ib-iconinfo{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.memtourn-infobox .ib-icon i{
  text-align: center;
  width: 100%;
  font-size: 40px;
  color: #fff;
  text-shadow:1px 1px 0px #000;
}

.memtourn-infobox .ib-icon .ib-infonote{
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  padding-top:5px;
  color: #fff;
  text-shadow:1px 1px 0px #000;
}

.memtourn-infobox .ib-info{
  float:right;
  width: 60%;
  padding: 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.memtourn-infobox .ib-info .ib-infopoint{
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.membertourn-details{
  width:75%;
  margin:30px auto;
  background: #fff;
  padding: 20px 30px;
}

.membertourn-details h5{
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
}

.membertourn-detail p{
  border-bottom:1px solid silver;
}

.membertourn-contact{
  width:100%;
  background: #33414a;
  color:#fff;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px;
}

.membertourn-contact h5{
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  text-shadow: 1px 1px 0px #000;
}

.contact-box{
  width: 50%;
  border-left: 1px solid #fff;
  padding: 5px 20px;
}

.contact-box:first-of-type{
  border-left: none;
}

span.superbold{
  font-weight:700;
  text-shadow: 2px 2px 0px #000;
}