/* gwt__RoadBLock */

.gwt__roadblock {
	padding: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	z-index: 9999;
	background: #fff;
	-webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	display: flex;
  align-items: center;
  justify-content: center;
}
.gwt__container{
  max-width: 1200px;
  margin: auto;
}
.roadblock__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	position: relative;
}
  
  .gwt__skip-ad {
    background: #c4161c;
    text-align: center;
    color: #fff;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 20px 6px 20px;
    border-radius: 22px;
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
  }
  .gwt__skip-ad:hover {
    color: #fff;
  }
  
  .gwt__roadblock-news-wrap .primary {
    color: #fff;
    background-color: #002c3e;
  }
  .gwt__roadblock-news-wrap h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
    color: #fff;
  }
  .gwt__roadblock-news-wrap h3 a:hover {
    color: #fff;
    opacity: 0.9;
  }
  .gwt__roadblock-news-wrap p {
    font-size: 20px;
    line-height: 32px;
  }
  
  .gwt__roadblock-news-wrap {
    margin-bottom: 30px;
  }
  
  .gwt__roadblock-ad {
    overflow: hidden;
  }
  
  .gwt__roadblock-remove .gwt__roadblock {
    opacity: 0;
  
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    visibility: hidden;
  }
  .aligncenter {
    text-align: center;
  }
  .gwt__roadblock__ad .container {
    width: 100%;
    padding: 0 20px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
  }

  .gwt__roadblock__ad > div > a {
    display: block;
    width: 100%;
    height: auto;

  }
  
  .alignright {
    text-align: right;
  }
  
  .gwt__roadblock__ad {
    text-align: center;
  }
  .mobile-view {
    display: none;
  }

  .gwt__roadblock-hide .gwt__roadblock {
    opacity: 0;
    visibility: hidden;
  }

  @media (max-width: 768px) {
    .gwt__roadblock {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
    }
    .mobile-view {
      display: block;
    }

    .desktop-view {
      display: none;
    }
  }
