.wrld-gutenberg-container {
    background-color: unset;
    display: flex;
    flex-direction: column;
    margin-right: 25px;
}

.wrld-gutenberg-container .wrld-gutenberg-header {
    min-height: 55px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0px;
    background-image: url('../images/gutenberg-blocks-header-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

.wrld-gutenberg-container .wrld-gutenberg-header p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: white;
  margin: 18px 0px 18px 19px;
}

.wrld-gutenberg-container .wrld-gutenberg-header a {
  font-weight: 900;
  font-size: 16px;
  color: white;
  text-decoration: none;
}
.wrld-gutenberg-container .wrld-gutenberg-header span{
  font-weight: 900;
  font-size: 16px;
  color: white;
  margin-top: 4px;
}

.wrld-gutenberg-container .wrld-gutenberg-post-container {
    background-color: #FFFAFA;
    border-radius: 12px;
    padding: 2px;
    width: auto;
    display: flex;
    margin-top: 18px;
    flex-direction: column;
    min-height: 80px;
}
/* accordian */

.wrld-accordion {
    background-color:unset;
    color: #444;
    cursor: pointer;
    padding: 26px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 23px;
    transition: 0.4s;
  }

  .accordiantext{
    display: inline-block;

  }
  
  .wrld-active, .wrld-accordion:hover {
    background-color: unset;
  }
  
  .wrld-accordion:after {
    content: '\276E';
    transform: rotate(-90deg);
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .wrld-active:after {
    content: '\276E';
    transform: rotate(90deg);
  }

  .wrld-panel {
    padding: 0 18px;
    background-color: #FFFAFA;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }



  /* feature post css */
.wrld-feature-post {
  display: flex;
  flex-direction: column;
  padding: 0px 15px 20px 15px;
  border-radius: 10px;
}

.wrld-feature-post .wrld-feature-post-header {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 45px;
}

.wrld-feature-post .wrld-feature-post-header h2 {
  font-size: 20px;
  line-height: 125%;
  display: flex;
  align-items: center;

  color: #333333;
}

.wrld-feature-post .wrld-feature-post-header .wrld-feature-post-new-tag {
  width: 37px;
  padding-left: 10px;
  height: 26px;
  display: flex;
  align-self: center;
  align-items: center;
  background: linear-gradient(180deg, #E52D27 0%, #235AF3 100%);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  margin: 1px 0px 1px 13px;
}

.wrld-feature-post .wrld-feature-post-header .wrld-feature-post-pro-tag {
  width: 34px;
  padding-left: 13px;
  height: 26px;
  display: flex;
  align-self: center;
  align-items: center;
  
  background: linear-gradient(
    110.24deg,
    #12c2e9 14.77%,
    #c471ed 52.59%,
    #f64f59 88.86%
  );
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  margin: 1px 0px 1px 13px;
}


.wrld-feature-post .wrld-feature-post-content {
  display: flex;
  margin-top: 5px;
  flex-direction: row;
}

.wrld-feature-post .wrld-feature-post-content .wrld-post-info {
  width: 100%;
  margin-right: 20px;
  flex-grow: 1;

}

.wrld-feature-post .wrld-feature-post-content .wrld-post-info ul {
  list-style: none;
}

.wrld-feature-post .wrld-feature-post-content .wrld-post-info ul li{
  font-weight: 400;
  font-size: 18px;
  line-height: 155%;
}

.wrld-feature-post .wrld-feature-post-content .wrld-post-images {
  width: 100%;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.wrld-feature-post .wrld-feature-post-content .wrld-post-images img {
  width: 90%;
  height: 245px;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: display 0.7s ease-out;
}

.wrld-feature-post .wrld-feature-post-footer {
  width: 100%;
  height: 40px;
  margin-top: 14px;
  display: flex;
  flex-direction: row;
}

.wrld-feature-post .wrld-feature-post-footer .wrld-feature-post-footer-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: end;
}

.wrld-feature-post .wrld-feature-post-footer .wrld-feature-post-footer-text a {
  font-weight: 600;
  font-size: 14px;
  line-height: 155%;
}

.wrld-feature-post .wrld-feature-post-footer .wrld-feature-post-footer-text a span {
  text-decoration: none;
}

.wrld-feature-post .wrld-feature-post-footer .wrld-feature-post-footer-button {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.wrld-feature-post .wrld-feature-post-footer .wrld-feature-post-footer-button a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 39px;
  color: white;
  background: #008AD8;
  border-radius: 8px;
}

.wrld-version-margin {
  margin-top: 20px;
}


/* slider css */
.wrld-slider-container{
  position: relative;
}
.mySlides {display:none;}

.wrld-slider-btn-left{
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%,-50%);
  vertical-align: middle;

}

.wrld-modal-slider-btn-left{
  /* position: absolute; */
  top: 50%;
  left: 0%;
  transform: translate(0%,-50%);
  vertical-align: middle;

}
.wrld-slider-btn-color{
  display: inline-block;
  border: none;
  background-color: rgba(0, 0, 0, 0.144)!important;
  color: white;
  padding: 8px 16px;
  cursor: pointer;
}
.wrld-slider-btn-color:hover{
  background-color: #000!important;
}

.wrld-modal-slider-btn-color{
  display: inline-block;
  border: none;
  background-color: rgba(0, 0, 0, 0)!important;
  color: white;
  padding: 12% 16px;
  cursor: pointer;
  font-size: 50px;
}
.wrld-modal-slider-btn-color:hover{
  font-size: 50px;
  color:#008ad8;
}

.wrld-slider-btn-right{   
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%,-50%);
  vertical-align: middle;
}

.wrld-modal-slider-btn-right{   
  /* position: absolute; */
  top: 50%;
  right: 0%;
  transform: translate(0%,-50%);
  vertical-align: middle;
}

/* The Modal (background) */
.wrld-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;

  /* Stay in place */
  z-index: 9999999999999;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.825);

  /* Black w/ opacity */
}
/* Modal Content */
.wrld-modal-content {
  background-color: transparent;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-left: 10%;  color: black;
  width: 80%;
}

/* The Close Button */
.close-btn-modal {
  display: flex;
  width: 95%;
  flex-direction: row-reverse;
}

.wrld-close {
  color: #e1dddd;
  padding: 10px;
  float: right;
  font-size: 50px;
  font-weight: bold;
  margin-top: -5%;
  margin-right: -10%;
}

.wrld-close:hover,
.wrld-close:focus {
  color:#008ad8;
  border-color: #000;
  text-decoration: none;
  cursor: pointer;
}

.wrld-modal-img {
  background-color: white;
  height: auto;
  width: 80%;
  margin-top: 3%;
}

/* beacon icon */

.gutenberg-beacon-icon{
	position: absolute;
    display: inline-block;
	height: 12px;
	width:12px;
  margin-left: 10px;
	border-radius: 50%;
	background-color:  #235AF3;
	color: #ff4141;
	text-shadow: 0 0 20px #f00, 0 0 30px #f00, 0 0 40px #f00, 0 0 50px #f00, 0 0 60px #f00, 0 0 70px #f00, 0 0 80px #f00;
}

/* resposive media css */

@media only screen and (max-width: 770px) {


  .wrld-feature-post .wrld-feature-post-content {
    flex-direction: column;
  }

  .wrld-feature-post .wrld-feature-post-content .wrld-post-images img {
    margin-left: 0;
    width: 100%;
  }

  .wrld-modal {
    left: 0;
  }

  .wrld-new-pro{
    display: flex;
    flex-direction: row;
  }

  .wrld-feature-post .wrld-feature-post-header {
    flex-direction: unset;
  }

  .wrld-feature-post .wrld-feature-post-header .wrld-feature-post-pro-tag{
    margin: 0px 0px 1px 0px;
  }
  .wrld-feature-post .wrld-feature-post-header .wrld-feature-post-new-tag{
    margin: 0px 13px 1px 0px;
  }
  .wrld-feature-post .wrld-feature-post-footer{
    flex-direction: column;
    align-items: start;
    height: max-content;
    justify-content: start;
  }
  .wrld-feature-post-footer-button{
    padding: 10px 0px 0px 0px;
  }

  .wrld-whatsnew-container .wrld-post-request, .wrld-gutenberg-container .wrld-post-request{
    background-image: url("../images/request-feature-bg-moble.png");
    
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }

  .wrld-fixed-req{
    position:fixed;
    width: 90%;
    bottom: -1%;
    right: 6%;
    z-index: 999999;
   }

   .wrld-whatsnew-post-container .wrld-post-request .wrld-post-request-button a, .wrld-gutenberg-container .wrld-post-request .wrld-post-request-button a{
    display: flex;
   }

   .wrld-feature-post .wrld-feature-post-content .wrld-post-info ul li {
    font-size: 14px;
   }

  .wrld-whatsnew-post-container .wrld-post-request .wrld-post-request-text p, .wrld-gutenberg-container .wrld-post-request .wrld-post-request-text p{
    width: 85%;
  }

  .wrld-changelog-container {
    display: flex;
    flex-direction: row-reverse;
    margin: 38px 0px 71px 20px;
  }

  .wrld-modal {
      left: 0;
  }

  .wrld-tab-wrapper .nav-tab-active, .nav-tab-active:hover, .nav-tab-active:focus, 
  .nav-tab-active:focus:active{
    border-bottom: unset;
  }
  .wrld-tab-wrapper .nav-tab{
     margin-bottom: 8px !important;
  }

  .wrld-feature-post .wrld-feature-post-content .wrld-post-info p{
    font-size: 14px;
    margin: 5px 0px;
  }
  .wrld-feature-post .wrld-feature-post-header h2 {
    font-size: 16px;
  }
  .post-section-heading h2{
    font-size: 18px;
  }
  .post-section-heading span{
    font-size: 14px;
  }
  .wrld-modal-content {
    padding-top: 41%;
  }
  .wrld-accordion {
   
    font-size: 18px;

  }
}

.wrld-single-hide{
  display: none;
}

.wrld-new-pro{
  display: flex;
}